Bayazee wrote:
> hi
> can we hide a python code ?
> if i want to write a commercial software can i hide my source code from
> users access ?
> we can conver it to pyc but this file can decompiled ... so ...!!
> do you have any idea about this ...?
Use Pyrex in order to build C-Modules from the cri
Mladen Adamovic wrote:
> Hi!
>
> I wonder which editor or IDE you can recommend me for writing Python
> programs. I tried with jEdit but it isn't perfect.
>
Nothing is perfect ... but try SciTE and Eric
http://www.die-offenbachs.de/detlev/eric3.html
--Armin
http://www.steinhoff-automation.com
abhinav wrote:
> Hi guys.I have read that one cannot perform true multithreading in
> python due to global interpreter lock mechanism.Suppose i have to
> implement a crawler on a say cluster system like clusterknoppix so that
> i can use parallel virtual machine (PVM)for programming in
> multiproce
Alex Martelli wrote:
> Christoph Conrad <[EMAIL PROTECTED]> wrote:
>
>
>>Hello Roger,
>>
>>
>>>since the length of the first sequence of the letter 'a' is 2. Yours
>>>accepts it, right?
>>
>>Yes, i misunderstood your requirements. So it must be modified
>>essentially to that what Tim Chase wrote:
Adriaan Renting wrote:
> Well, I'm not sure if Amsterdam is nice, but the Netherlands is o.k., except
> for the weather.
> I'd like to descripbe it as 49 weeks of autumn, 1 week of spring, 1 week of
> summer, 1 week of winter.
> Currently my employer only has an opening for a Microwave Antenna de
Armin Steinhoff wrote:
>
>
> Hi all,
>
> is it possible to get the name of an empty element specified
> by ... the expat parser seems only to recognize
> the form
>
> Regards
>
> Armin
Ok ... found the root of the problem. The expat parser is OK
Hi all,
is it possible to get the name of an empty element specified
by ... the expat parser seems only to recognize
the form
Regards
Armin
--
http://mail.python.org/mailman/listinfo/python-list
Stelios Xanthakis wrote:
> Armin Steinhoff wrote:
>
>>>
>>> pyvm has that. A big part of it is written in "lightweight C++" [1].
>>
>>
>>
>> Realy ? I have downloaded the lwc distribution and checked it out.
>> It was a surprise t
Stelios Xanthakis wrote:
> Kay Schluehr wrote:
>
>>
>> Yes. What we are seeking for and this may be the meaning of Armins
>> intentiously provocative statement about the speed of running HLLs is a
>> successor of the C-language and not just another VM interpreter that is
>> written in C and limits
Alastair Basden wrote:
Hi,
Does anyone know whether there is a way for a python thread to release
the global interpreter lock, and let all other threads have a chance at
running before re-acquiring it? Does the thread scheduling follow a
round-robin method?
The thread itself are scheduled by th
Brad Tilley wrote:
Is it possible to write a file open, then read program in C and then
call the C program from a Python script like this:
for root, files, dirs in os.walk(path)
for f in files:
try:
EXECUTE_C_PROGRAM
If possible, how much faster would this be over a pure P
Hi all,
I ported ctypes 0.9.2 to QNX6.3 ... 99.9 % is working but only the
unittest test_functions.py makes some problem. Here is the code:
p = pointer(c_int(99))
result = f(p)
self.failUnlessEqual(result.contents.value, 99) #---> works!!
# We need to keep the poi
Alan Sheehan wrote:
Hi pythonistas,
I am looking for methods of deploying applications with end users so
that the python code is tamper proof. What are my options ?
I understand I can supply .pyc or .pyo files but they can easily be
reverse engineered I am told.
Is it possible to load the scripts f
13 matches
Mail list logo