I have build an extension module PyRPC.so (why not be libPyRPC.so?).
The PyRPC.so uses API in libRPCPacker.so.
How to distribute the PyRPC.so?
I just put PyRPC.so and libRPCPacker.so in the same folder.
And under this folder, run python.
It tells PyRPC module cannot find a method in libRPCPacker.s
Hi :)
I have a main() function of my app which intializes the Python
Interpreter and some other stuff. When I am finished I call:
PyGILState state = PyGILState_Ensure()
//call PyRun_String()
PyGILStateRelease(state);
The first question is, I found out the API contains other commands lik
PyEval_A
Lawrence D'Oliveiro <[EMAIL PROTECTED]> wrote:
> In message <[EMAIL PROTECTED]>, Duncan Booth wrote:
>
>> Have you ever considered trying to write readable code instead?
>>
>> (I must admit I haven't checked whether GZipFile works with the 'with'
>> statement...
>
> That's why I prefer writ
On Fri, Dec 5, 2008 at 5:09 PM, Allen <[EMAIL PROTECTED]> wrote:
> I have build an extension module PyRPC.so (why not be libPyRPC.so?).
> The PyRPC.so uses API in libRPCPacker.so.
> How to distribute the PyRPC.so?
The simple answer is you can't. Depending on the distribution, the
python interprete
2008/12/5 Mark Summerfield <[EMAIL PROTECTED]>:
> I don't think the book is due in Europe until the end of January, but
> could take longer for elsewhere. (Of course Israel is in Europe
> according to the Eurovision Song Contest, so you might get lucky:)
>
Yes, we are in the unique geographical an
Hi
I set my http_proxy and now
i get the following error
*urllib2.HTTPError: HTTP Error 403: Forbidden ( The ISA Server denied the
specified Uniform Resource Locator (URL). *
what other variables have to be set ?
Regards,
sv
On Fri, Dec 5, 2008 at 12:47 PM, rishi pathak <[EMAIL PROTECTED]>wro
[EMAIL PROTECTED] wrote:
> The first question is, I found out the API contains other commands lik
> PyEval_AcquireLock(). I don't really understand if I have to use them
> too, could anyone explain? Thanks.
That's unrelated. The GIL is special in that it has its own handling functions.
> void My
Hi!
thats a very interesting point and good to know. I have to release
the GIL but how do I do?
In this case i need PyEval_AcquireLock and PyEval_ReleaseLock?
Thanks.
--
http://mail.python.org/mailman/listinfo/python-list
Hello All,
I subclassed dict and overrode __setitem__. When instances are
unpickled, the __setstate__ is not called before the keys are assigned
via __setitem__ in the unpickling protocol.
I googled a bit and found that this a bug filed in 2003:
http://bugs.python.org/issue826897
It is stil
In message <[EMAIL PROTECTED]>, Steven D'Aprano
wrote:
> On Fri, 05 Dec 2008 13:27:35 +1300, Lawrence D'Oliveiro wrote:
>
>> In message <[EMAIL PROTECTED]>, Cong
>> Ma wrote:
>>
>>> The "if ... != None" is not necessary... "if PatchDatePat.search(f)"
>>> is OK.
>>
>> I don't do that.
>
> Perh
In message <[EMAIL PROTECTED]>, Steven D'Aprano
wrote:
> ... stupid formatting ...
withallthedifferenttermsruntogetherintoonelinesoyoudon'tknowwhereoneendsandtheotherbeginsifthat'showyouliketowritecodefinethat'snothowIliketodoit
--
http://mail.python.org/mailman/listinfo/python-list
In message <[EMAIL PROTECTED]>, Steven D'Aprano
wrote:
> Since the context has been deleted, it's hard to tell whether the code as
> written by Lawrence ...
If you want to reply to my message, reply to my message, don't reply to my
reply to someone else's reply to my message.
--
http://mail.pytho
In message <[EMAIL PROTECTED]>, Duncan Booth wrote:
> ... but the mess you posted is going to be virtually untestable ...
The "mess" I posted did actually work as written.
> ... whereas splitting it up into small testable functions will make it
> much easier for you to actually get somewhere nea
James Stroud wrote:
Hello All,
I subclassed dict and overrode __setitem__. When instances are
unpickled, the __setstate__ is not called before the keys are assigned
via __setitem__ in the unpickling protocol.
I googled a bit and found that this a bug filed in 2003:
http://bugs.python.org/is
On Dec 4, 11:35 pm, Paul McGuire <[EMAIL PROTECTED]> wrote:
> Yowza! My eyes glaze over when I see re's like "r'(?m)^(?P.*?
> (".*?".*?)*)(?:#.*?)?$"!
>
yeah, I know ... :( ( I love complicated regexp ... it's like a puzzle
game for me)
> from pyparsing import quotedString, Suppress, restOfLine
On 5 Des, 00:58, "David Cournapeau" <[EMAIL PROTECTED]> wrote:
>
> The first step for cross compilation would be the ability to build
> python itself wtih different build/host, and that's already non
> trivial.
Now that Python 3.0 is out, perhaps there will be a possibility of one
of the many cros
Hi all,
I have just released version 0.0.30 of Shed Skin, an experimental
(restricted) Python-to-C++ compiler.
Most importantly, this release adds (efficient) support for
user-defined classes in generated extension modules, which should make
it much easier to integrate compiled code within larger
On Fri, 05 Dec 2008 23:28:48 +1300, Lawrence D'Oliveiro wrote:
> In message <[EMAIL PROTECTED]>, Steven D'Aprano
> wrote:
>
>> Since the context has been deleted, it's hard to tell whether the code
>> as written by Lawrence ...
>
> If you want to reply to my message, reply to my message, don't r
On Fri, 05 Dec 2008 23:32:49 +1300, Lawrence D'Oliveiro wrote:
> In message <[EMAIL PROTECTED]>, Duncan Booth wrote:
>
>> ... but the mess you posted is going to be virtually untestable ...
>
> The "mess" I posted did actually work as written.
>
>> ... whereas splitting it up into small testabl
["Followup-To:" header set to comp.unix.shell.]
On 29 Nov 2008 16:23:49 GMT, Tam Ha <[EMAIL PROTECTED]> wrote:
> Jorgen Grahn <[EMAIL PROTECTED]> wrote:
>>(I could get away with using Bash in these cases. It has functions,
>>local variables and so on. Writing portable Bourne shell is not as
>>mu
On Fri, 05 Dec 2008 23:16:08 +1300, Lawrence D'Oliveiro wrote:
> In message <[EMAIL PROTECTED]>, Steven D'Aprano
> wrote:
>
>> On Fri, 05 Dec 2008 13:27:35 +1300, Lawrence D'Oliveiro wrote:
>>
>>> In message <[EMAIL PROTECTED]>, Cong
>>> Ma wrote:
>>>
The "if ... != None" is not necessary.
i use pthon 3.0 today
python code:
import urllib.request
then use PyRun_StringFlag to run it.
get this
it's a bug?
--
http://mail.python.org/mailman/listinfo/python-list
"Yves Dorfsman" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Is there any built in way to generate a list of characters, something
along the line of range('a'-'z') ?
Right now I am using:
chars = [ chr(l) for l in range(0x30, 0x3a) ] # 0 - 9
chars += [ chr(l) for l in rang
Steven D'Aprano wrote:
Gosh Lawrence, do tell, which category do YOU fall into?
I suppose a mix-up between a cowbody (or Fonzie) coder and a troll.
His programs have an inner poetry that we're obviously too stupid to
understand.
--
http://mail.python.org/mailman/listinfo/python-list
Mark Tolonen:
> Writing a helper function reduces code repetition and improves readability:
> def crange(startch,endch):
> '''Return a list of characters from startch to endch, inclusive.'''
> return [chr(c) for c in xrange(ord(startch),ord(endch)+1)]
In Python ranges are open
On 5 Dec, 05:07, Barry Warsaw <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hot on the heals of Python 3.0 comes the Python 2.6.1 bug-fix
> release.
Nice work. Thanks.
> Source tarballs and Windows installers can be downloaded from the
> Python 2.6.1 page
I
On 5 Des, 12:24, "Mark Dufour" <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have just released version 0.0.30 of Shed Skin, an experimental
> (restricted) Python-to-C++ compiler.
I think Mark forgot to post some links. ;-)
http://shed-skin.blogspot.com/
http://code.google.com/p/shedskin/
Paul
--
h
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Mark Tolonen:
Writing a helper function reduces code repetition and improves
readability:
def crange(startch,endch):
'''Return a list of characters from startch to endch, inclusive.'''
return [chr(c) for c in xrange(ord(startch),ord(
Ok, didn't show the whole problem...
I will read the doc anyway, but why "questions.html" keep it "t"??
>>> test=['03.html', '06.html', 'questions.html', '04.html',
'toc.html', '01.html', '05.html', '07.html', '02.html', '08.html']
>>> test[4]
'toc.html'
>>> test[4].strip('.html')
'oc'
>>> tes
[EMAIL PROTECTED] wrote:
On Dec 4, 4:45 pm, Michael Ströder <[EMAIL PROTECTED]> wrote:
[EMAIL PROTECTED] wrote:
I'm having a problem trying to use the codecs package to aid me in
converting some bytes from EBCDIC into ASCII.
Which EBCDIC variant?
sEBCDIC = unicode(sSource, 'cp500', 'ignore')
Hi,
I've got this two pieces of code that works together, and fine
def testit():
for vals in [[i&mask==mask for mask in [1<', flag(*vals)
def flag(IGNORECASE=False, LOCALE=False, MULTILINE=False,
DOTALL=False, UNICODE=False, VERBOSE=False):
vals = [IGNORECASE, LOCALE, MULTILINE, DOTALL,
"Mark Tolonen" <[EMAIL PROTECTED]> wrote:
><[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> ..
>>In Python ranges are open on the right, so I name cinterval such
>>function.
>
> Yes, and that's fine when dealing with integers and slicing, but when
> dealing with characters, it i
Guy Doune a écrit :
Ok, didn't show the whole problem...
I will read the doc anyway, but why "questions.html" keep it "t"??
>>> test=['03.html', '06.html', 'questions.html', '04.html',
'toc.html', '01.html', '05.html', '07.html', '02.html', '08.html']
>>> test[4]
'toc.html'
>>> test[4].stri
Hello group,
I'm having trouble reading a utf-16 encoded file with Python3.0. This is
my (complete) code:
#!/usr/bin/python3.0
class AddressBook():
def __init__(self, filename):
f = open(filename, "r", encoding="utf16")
while True:
"eric" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
def flag(IGNORECASE=False, LOCALE=False, MULTILINE=False,
DOTALL=False, UNICODE=False, VERBOSE=False):
vals = [IGNORECASE, LOCALE, MULTILINE, DOTALL, UNICODE, VERBOSE]
filtered = map( lambda m:m[1],filter( lambda m: m[0]
"Guy Doune" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Ok, didn't show the whole problem...
I will read the doc anyway, but why "questions.html" keep it "t"??
>>> test=['03.html', '06.html', 'questions.html', '04.html', 'toc.html',
'01.html', '05.html', '07.html', '02.html'
Hi all,
I try to make a websevice with python and mod_python. İ try to make a po
files, but i can not reach them in the page. When i ask the page like "
os.listdir('.') " but i want to get files directory, what can i do? sorry
for my bad describe of that. Thanks a lot...
--
http://mail.python.org/m
Hey!
Ive been working on an application quite some time now and i wanted to
include something to let the user load a new version. i therefore
tried to include this here:
from ftplib import FTP
import string,re
def handleDownload(block):
processfile.write(block)
print ".",
def load_new
I post it here because I am using a Psyco version that was compiled by
people here.
I am using Python 2.6.1, on Win, with Psyco (1, 6, 0, 'final', 0).
This minimized code:
from psyco.classes import psyobj
class Bar(psyobj):
def __init__(self, baz):
pass
b = Bar(0)
Produces:
C:\...\te
On Fri, 2008-12-05 at 02:10 +0100, "Martin v. Löwis" wrote:
> > Since the source code is incompatible, I was expecting the Python
> > executable to have a new name such as 'python3'
>
> It does: the executable is called python3.0.
>
> > or for the default
> > source code filename to change to '.p
Andreas Waldenburger:
> Whenever has it been a pythonic ideal to "not allow" stuff? You get
> warnings. Everything else is up to you.
It's a strong source for bugs, especially for newbies, that I have
hoped to see removed from Python3 (my first request of this was years
ago). I was nearly sure to
On 04 Dec 2008 22:29:41 GMT Steven D'Aprano
<[EMAIL PROTECTED]> wrote:
> Thank goodness we don't have to program in verbose, explicit English!
Then you'll HATE Inform 7:
http://en.wikipedia.org/wiki/Inform_7#Example_game_2
:)
/W
--
My real email address is constructed by swapping the domain wi
[EMAIL PROTECTED] wrote:
> I post it here because I am using a Psyco version that was compiled by
> people here.
> I am using Python 2.6.1, on Win, with Psyco (1, 6, 0, 'final', 0).
>
> This minimized code:
>
> from psyco.classes import psyobj
> class Bar(psyobj):
> def __init__(self, baz):
>
On Thu, 4 Dec 2008 at 20:54, Terry Reedy wrote:
'toc.html'
> > > test[4].strip('.html')
'oc'
Can't figure out what is going on, really.
What I can't figure out is why, when people cannot figure out what is going
on with a function (or methods in this case), they do not look it up the doc.
eric wrote:
Hi,
I've got this two pieces of code that works together, and fine
def testit():
for vals in [[i&mask==mask for mask in [1<', flag(*vals)
def flag(IGNORECASE=False, LOCALE=False, MULTILINE=False,
DOTALL=False, UNICODE=False, VERBOSE=False):
vals = [IGNORECASE, LOCALE, MULT
On Thu, 4 Dec 2008 15:49:46 -0600 [EMAIL PROTECTED] wrote:
>
> Andreas> Whenever has it been a pythonic ideal to "not allow"
> Andreas> stuff? You get warnings. Everything else is up to you.
>
> It's more than warnings. With properly crafted combinations of
> spaces and tabs you can get
On Thu, 4 Dec 2008 16:17:20 -0800 "Warren DeLano" <[EMAIL PROTECTED]>
wrote:
> Thank so much for the suggestions Ben. Sorry that I am personally
> unable to live up to your high standards, but it is nevertheless an
> honor to partipicate in such a helpful and mutually respectful
> community maili
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 5, 3:44 pm, "Mark Tolonen" <[EMAIL PROTECTED]> wrote:
> "eric" <[EMAIL PROTECTED]> wrote in message
>
> news:[EMAIL PROTECTED]
>
> > def flag(IGNORECASE=False, LOCALE=False, MULTILINE=False,
> > DOTALL=False, UNICODE=False, VERBOSE=False):
> > vals = [IGNORECASE, LOCALE, MULTILINE, DOTALL
Andreas Waldenburger:
> My point is: If you mix tabs and spaces in a way that breaks code,
> you'll find out pretty easily, because your program will not work.
- Most newbies don't know that.
- Sometimes it may produce wrong results.
- And even if you are an expert when you go changing a little a
On Dec 3, 8:12 pm, Дамјан Георгиевски <[EMAIL PROTECTED]> wrote:
> > I am new to PyQT and GUI programming in general. What tutorials I have
> > found are relatively clear on standard operations within a single
> > window (QtGui.QWidget or QtGui.QMainWindow). Exiting this window exits
> > the overal
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
On Thu, 4 Dec 2008 at 20:54, Terry Reedy wrote:
[snip]
I have often wished that in 'split' I could specify a _set_ of characters
on which the string would be split, in the same way the default list
of whitespace characters causes a s
On Dec 4, 6:09 pm, [EMAIL PROTECTED] wrote:
> For the interested, with MMA 6, on a Pentium 4 3.8Ghz:
>
> The code that Jon posted:
>
> Timing[Export["image-jon.pgm", [EMAIL PROTECTED]@Main[2, 100, 4]]]
> {80.565, "image-jon.pgm"}
>
> The code that Xah posted:
>
> Timing[Export["image-xah.pgm", [EMA
[EMAIL PROTECTED] wrote:
On Thu, 4 Dec 2008 at 20:54, Terry Reedy wrote:
'toc.html'
> > > test[4].strip('.html')
'oc'
Can't figure out what is going on, really.
What I can't figure out is why, when people cannot figure out what is
going on with a function (or methods in this case), they
Warren, weren't you aware that Python.org is now a church. So you can never
live up to the standards of the Pythonista high priests. You can only ask a
question or submit your comment then cower, hoping the pythonista high
priests don't beat you with clubs for heresy.
;)
2008/12/4 Warren DeLa
On Dec 5, 8:06 am, Marco Mariani <[EMAIL PROTECTED]> wrote:
> Steven D'Aprano wrote:
> > Gosh Lawrence, do tell, which category do YOU fall into?
>
> I suppose a mix-up between a cowbody (or Fonzie) coder and a troll.
Naah.. more likely an (ex?) Lisper/Schemer.
--
http://mail.python.org/mailman/li
On Fri, 5 Dec 2008 at 07:54, Mark Tolonen wrote:
> > import re
> > re.split('[,.]','blah,blah.blah')
['blah', 'blah', 'blah']
Thank you. Somehow it never occurred to me that I could use that
kind of pattern that way. I guess my brain just doesn't think
in regexes very well :)
--RDM
--
htt
On Dec 5, 11:56 am, eric <[EMAIL PROTECTED]> wrote:
> On Dec 4, 11:35 pm, Paul McGuire <[EMAIL PROTECTED]> wrote:
>
> > Yowza! My eyes glaze over when I see re's like "r'(?m)^(?P.*?
> > (".*?".*?)*)(?:#.*?)?$"!
>
> yeah, I know ... :( ( I love complicated regexp ... it's like a puzzle
> game for m
On Fri, 5 Dec 2008 07:46:02 -0800 (PST) [EMAIL PROTECTED] wrote:
> Andreas Waldenburger:
> > My point is: If you mix tabs and spaces in a way that breaks code,
> > you'll find out pretty easily, because your program will not work.
>
> - Most newbies don't know that.
> - Sometimes it may produce w
Johannes Bauer <[EMAIL PROTECTED]> writes:
> Traceback (most recent call last):
> File "./modify.py", line 12, in
> a = AddressBook("2008_11_05_Handy_Backup.txt")
> File "./modify.py", line 7, in __init__
> line = f.readline()
> File "/usr/local/lib/python3.0/io.py", line 1807, in r
Guy Doune wrote:
Guy Doune a écrit :
Ok, didn't show the whole problem...
I will read the doc anyway, but why "questions.html" keep it "t"??
>>> test=['03.html', '06.html', 'questions.html', '04.html',
'toc.html', '01.html', '05.html', '07.html', '02.html', '08.html']
>>> test[4]
'toc.html
J Kenneth King schrieb:
> It probably means what it says: that the input file contains characters
> it cannot read using the specified encoding.
No, it doesn't. The file is just fine, just as the example.
> Are you generating the file from python using a file object with the
> same encoding? If
Mark Dufour wrote:
Hi all,
I have just released version 0.0.30 of Shed Skin, ...
Normally, including a link is a good idea.
--Scott David Daniels
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, 4 Dec 2008 15:49:46 -0600, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> It's more than warnings. With properly crafted
> combinations of spaces and tabs you can get code which
> looks like it has a certain indentation to the human
> observer but which looks like it has different indent
"J Kenneth King" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> It probably means what it says: that the input file contains characters
> it cannot read using the specified encoding.
That was my first thought. However it appears that there is an off by one
error somewhere in the
hi,
i have a feew questions concnering unicode and utf-8 handling and
would appreciate any insights.
1) i got a xml document, utf-8, encoded and been trying to use etree
to parse and then commit to mysql db. using etree, everything i've
been extracting is return as a string except ascii char > 12
James Stroud wrote:
James Stroud wrote:
Hello All,
I subclassed dict and overrode __setitem__. When instances are
unpickled, the __setstate__ is not called before the keys are assigned
via __setitem__ in the unpickling protocol.
I googled a bit and found that this a bug filed in 2003:
It
[EMAIL PROTECTED] wrote:
Andreas Waldenburger:
Whenever has it been a pythonic ideal to "not allow" stuff? You get
warnings. Everything else is up to you.
It's a strong source for bugs, especially for newbies, that I have
hoped to see removed from Python3 (my first request of this was years
ag
Johannes Bauer wrote:
Hello group,
I'm having trouble reading a utf-16 encoded file with Python3.0. This is
my (complete) code:
what OS. This is often critical when you have a problem interacting
with the OS.
#!/usr/bin/python3.0
class AddressBook():
def __init__(self, filename):
Here is a really simple code :
---
from datetime import datetime
from pytz import timezone
tz=timezone("Europe/Paris")
d=datetime(2008,12,12,19,00,00,tzinfo=tz)
print d.isoformat()
d=datetime.now(tz)
print d.isoformat()
Terry Reedy schrieb:
> Johannes Bauer wrote:
>> Hello group,
>>
>> I'm having trouble reading a utf-16 encoded file with Python3.0. This is
>> my (complete) code:
>
> what OS. This is often critical when you have a problem interacting
> with the OS.
It's a 64-bit Linux, currently running:
Linux
Hi,
I have about 900 text files (about 2 GB of data) and I need to make
some very specific changes to the last line of each file. I'm
wondering if there is a way to just overwrite the last line of a file
or replace the spots I want (I even know the position of the
characters I need to replace).
Could someone run the code below on both Python 2.5 and 3.0
For me (on Windows) it runs over 7 times slower with Python 3.0
import time
lo, hi, step = 10**5, 10**6, 10**5
# writes increasingly more lines to a file
for N in range(lo, hi, step):
fp = open('foodata.txt', 'wt')
start = time
On Fri, Dec 5, 2008 at 1:54 PM, Istvan Albert <[EMAIL PROTECTED]>wrote:
> Could someone run the code below on both Python 2.5 and 3.0
>
> For me (on Windows) it runs over 7 times slower with Python 3.0
>
> import time
>
> lo, hi, step = 10**5, 10**6, 10**5
>
> # writes increasingly more lines to a
On Dec 5, 2008, at 11:36 AM, Johannes Bauer wrote:
I suspect that '?' after \n (\u0a00) is indicates not 'question-mark'
but 'uninterpretable as a utf16 character'. The traceback below
confirms that. It should be an end-of-file marker and should not be
passed to Python. I strongly suspect tha
[EMAIL PROTECTED] wrote:
Hi,
I have about 900 text files (about 2 GB of data) and I need to make
some very specific changes to the last line of each file. I'm
wondering if there is a way to just overwrite the last line of a file
or replace the spots I want (I even know the position of the
chara
On Dec 5, 3:25 pm, Johannes Bauer <[EMAIL PROTECTED]> wrote:
> Hello group,
>
> I'm having trouble reading a utf-16 encoded file with Python3.0. This is
> my (complete) code:
>
> #!/usr/bin/python3.0
>
> class AddressBook():
> def __init__(self, filename):
> f = open(filenam
On Dec 5, 12:54 pm, Istvan Albert <[EMAIL PROTECTED]> wrote:
> Could someone run the code below on both Python 2.5 and 3.0
>
> For me (on Windows) it runs over 7 times slower with Python 3.0
>
> import time
>
> lo, hi, step = 10**5, 10**6, 10**5
>
> # writes increasingly more lines to a file
> for
Joe Strout wrote:
On Dec 5, 2008, at 11:36 AM, Johannes Bauer wrote:
I suspect that '?' after \n (\u0a00) is indicates not 'question-mark'
but 'uninterpretable as a utf16 character'. The traceback below
confirms that. It should be an end-of-file marker and should not be
passed to Python. I s
On Dec 5, 4:32 am, Lawrence D'Oliveiro <[EMAIL PROTECTED]
central.gen.new_zealand> wrote:
> The code people write is probably a direct reflection of their thinking
> processes: For example, slow, plodding, one step at a time, incapable of
> imaginative leaps, versus those who operate directly on la
In article
<[EMAIL PROTECTED]>,
manatlan <[EMAIL PROTECTED]> wrote:
> Here is a really simple code :
> ---
> from datetime import datetime
> from pytz import timezone
>
> tz=timezone("Europe/Paris")
>
> d=datetime(2008,12,12,19,00,00,tzinfo=tz
Istvan Albert a écrit :
Could someone run the code below on both Python 2.5 and 3.0
For me (on Windows) it runs over 7 times slower with Python 3.0
Already covered, I think:
http://groups.google.com/group/comp.lang.python/browse_frm/thread/9046eee09137c657#
import time
lo, hi, step = 10**5
Python help,
In September I wrote:
I have a number of clients running a program built
with python 2.5. One has just purchased an HP with
a duo core Pentium R processor E2200, 2.2G with .99g
ram.
Only on the new HP, when they try to print they get an
import error;
File win32ui.pyc line 12, in
Hi...
I'm working with a small team writing a bunch of python applications
that communicate via xml/http in a somewhat restful way. :) They are
running on about half a dozen computers. We'll probably be scaling
that to a lot more computers soon.
I've been playing with the python logging module
Istvan> Could someone run the code below on both Python 2.5 and 3.0 For
Istvan> me (on Windows) it runs over 7 times slower with Python 3.0
...
I/O was completely rewritten for Python 3.0. Stdio is no longer used. At
the moment I believe much of the io subsystem is still implemente
On Dec 4, 5:45 pm, Andreas Waldenburger <[EMAIL PROTECTED]> wrote:
> On Thu, 4 Dec 2008 11:52:38 -0600 [EMAIL PROTECTED] wrote:
>
>
>
> > >>> As you have probably guessed: nothing changed here.
> > >>> Also see:http://www.python.org/dev/peps/pep-0666/
>
> > >> What? Do you mean it's pos
On Dec 5, 3:06 pm, [EMAIL PROTECTED] wrote:
> It should get faster over time. It will get faster over a shorter period of
> time if people contribute patches.
I see, thanks for the clarification.
I will make the point though that this makes python 3.0 unsuited for
anyone who has to process data
Sam> I've been playing with the python logging module. I'd like all of
Sam> these applications to write their logs to the same place in order
Sam> to make analysis easier.
Sam> Any ideas on best practices?
Perhaps use logging.handlers.SysLogHandler?
Sam> What are my options
If they are running standard Win XP (Home or Pro), as opposed to 64-bit Win
XP, then whether or not the CPU supports the IA64 instruction set really
doesn't matter. As far as I know every Intel Core2 and Pentium Dual-Core CPU
since ~ 2006 has supported 64bit instructions, even the Atom is 64bit. Al
Arnaud Delobelle <[EMAIL PROTECTED]> writes:
> "Zac Burns" <[EMAIL PROTECTED]> writes:
>
>> Ok. Feature request then - assignment of a special method name to an
>> instance raises an error.
>
> I haven't got the time to implement it, but I'm sure you can obtain the
> behaviour you want.
OK I've h
Istvan Albert wrote:
I see, thanks for the clarification.
I will make the point though that this makes python 3.0 unsuited for
anyone who has to process data. One could live with slowdowns of say
20-50 percent, to get the goodies that 3.0 offers, but when a process
that takes 1 second suddenly s
On Fri, 5 Dec 2008 12:16:47 -0800 (PST) "Fernando H. Sanches"
<[EMAIL PROTECTED]> wrote:
> On Dec 4, 5:45 pm, Andreas Waldenburger <[EMAIL PROTECTED]> wrote:
> > On Thu, 4 Dec 2008 11:52:38 -0600 [EMAIL PROTECTED] wrote:
> > [snip]
> > Whenever has it been a pythonic ideal to "not allow" stuff? Yo
I am running cygwin on xp.
Much to my annoyance, I can not cut-and-paste from a windows app to
the python prompt. I think I could do this with putty, but I do not
have the permissions to install putty on my xp box.
Can I load a file into the python interactive environment? For
example I have a f
Istvan Albert wrote:
On Dec 5, 3:06 pm, [EMAIL PROTECTED] wrote:
It should get faster over time. It will get faster over a shorter period of
time if people contribute patches.
I see, thanks for the clarification.
I will make the point though that this makes python 3.0 unsuited for
anyone wh
walterbyrd wrote:
I am running cygwin on xp.
Much to my annoyance, I can not cut-and-paste from a windows app to
the python prompt. I think I could do this with putty, but I do not
have the permissions to install putty on my xp box.
I do this all the time. The key (altho' not strictly essentia
On Friday 05 December 2008 15:27, Kevin Kelley wrote:
> If they are running standard Win XP (Home or Pro),
> as opposed to 64-bit Win XP, then whether or not the
> CPU supports the IA64 instruction set really doesn't
> matter. As far as I know every Intel Core2 and
> Pentium Dual-Core CPU since ~ 2
walterbyrd wrote:
I am running cygwin on xp.
and I just noticed this vital bit. So not sure
how much of my other post applies. Sorry. Maybe it'll
help anyway. :)
TJG
--
http://mail.python.org/mailman/listinfo/python-list
On Dec 5, 2008, at 15:52 , walterbyrd wrote:
Can I load a file into the python interactive environment? For
example I have a file called test.py that consists of the following:
print "hello"
print "hello again"
Can I load that file into python at the >>> prompt?
load "test.py"
or somethin
MRAB wrote:
Does pysco with with Python 3.0 (the homepage says 2.5)? If it does then
that might help! :-)
No, it won't help.
--
http://mail.python.org/mailman/listinfo/python-list
Arnaud Delobelle <[EMAIL PROTECTED]> writes:
[...]
> class ClassGetItem(object):
> def __get__(self, obj, objtype=None):
> return obj._getitem_
> def __set__(self, obj, val):
> obj._getitem_ = val
>
> class GetItem(object):
> def __get__(self, obj, objtype=None):
>
1 - 100 of 151 matches
Mail list logo