- 04 Haz, 2005 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Hye-Shik Chang yazdı
by Darek Suchojad)
-
Gregory P. Smith yazdı
* the has_key() method was not raising a DBError when a database error had occurred. [SF patch id 1212590] * added a wrapper for the DBEnv.set_lg_regionmax method [SF patch id 1212590] * DBKeyEmptyError now derives from KeyError just like DBNotFoundError. * internally everywhere DB_NOTFOUND was checked for has been updated to also check for DB_KEYEMPTY. This fixes the semantics of a couple operations on recno and queue databases to be more intuitive and results in less unexpected DBKeyEmptyError exceptions being raised.
-
- 03 Haz, 2005 10 kayıt (commit)
-
-
Tim Peters yazdı
-
Georg Brandl yazdı
-
Michael W. Hudson yazdı
-
Anthony Baxter yazdı
On more modern linuxes (and probably others) straight 'en_US' isn't a valid locale. Make the code try a couple of alternates. backport candidate
-
Michael W. Hudson yazdı
[ 1180995 ] binary formats for marshalling floats Adds 2 new type codes for marshal (binary floats and binary complexes), a new marshal version (2), updates MAGIC and fiddles the de-serializing of code objects to be less likely to clobber the real reason for failing if it fails.
-
Georg Brandl yazdı
component of the path.
-
Anthony Baxter yazdı
backport candidate
-
Michael W. Hudson yazdı
-
Raymond Hettinger yazdı
-
Gregory P. Smith yazdı
functions written in python. contributed by <frederic.gobry@epfl.ch>
-
- 02 Haz, 2005 8 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Hye-Shik Chang yazdı
when the member is available on the platform. (Contributed by Diego Petteno)
-
Neil Schemenauer yazdı
-
Andrew M. Kuchling yazdı
-
- 01 Haz, 2005 6 kayıt (commit)
-
-
Piers Lauder yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
-
- 31 May, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
Clarify the role of the chars argument in the strip() methods.
-
- 28 May, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 27 May, 2005 3 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 1181301 ] make float packing copy bytes when they can which hasn't been reviewed, despite numerous threats to check it in anyway if noone reviews it. Please read the diff on the checkin list, at least! The basic idea is to examine the bytes of some 'probe values' to see if the current platform is a IEEE 754-ish platform, and if so _PyFloat_{Pack,Unpack}{4,8} just copy bytes around. The rest is hair for testing, and tests.
-
Michael W. Hudson yazdı
Is anyone running the test suite regularly at the moment?
-
Raymond Hettinger yazdı
-
- 26 May, 2005 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
[ 1207501 ] Issue in grammar We didn't define dotted_name in the pseudo-grammar in the reference docs. Backport candidate.
-
- 25 May, 2005 2 kayıt (commit)
-
-
Fred Drake yazdı
(closes SF bug #1120777)
-
Fred Drake yazdı
(closes SF bug #1167922)
-
- 20 May, 2005 2 kayıt (commit)
-
-
Skip Montanaro yazdı
278. Closes bug 967182.
-
Jason Tishler yazdı
A problem regarding importing symlinked modules was recently reported on the Cygwin mailing list: http://cygwin.com/ml/cygwin/2005-04/msg00257.html The following test case demonstrates the problem: $ ls -l total 1 lrwxrwxrwx 1 jt None 6 Apr 23 13:32 bar.py -> foo.py -rw-r--r-- 1 jt None 24 Apr 18 20:13 foo.py $ python -c 'import bar' Traceback (most recent call last): File "<string>", line 1, in ? ImportError: No module named bar Since Cygwin's case_ok() uses a modified version of the Windows's version, the symlinked bar module actually resolves to file foo.py instead of bar.py. This obviously causes the matching code to fail (regardless of case). The patch fixes this problem by making Cygwin use the Mac OS X case_ok() instead of a modified Window's version.
-
- 18 May, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 16 May, 2005 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-