- 23 Ock, 2007 3 kayıt (commit)
-
-
Thomas Wouters yazdı
-
Thomas Wouters yazdı
When running the interpreter in an environment that would cause it to set stdout/stderr/stdin's encoding, having a sitecustomize that would replace them with something other than PyFile objects would crash the interpreter. Fix it by simply ignoring the encoding-setting for non-files. This could do with a test, but I can think of no maintainable and portable way to test this bug, short of adding a sitecustomize.py to the buildsystem and have it always run with it (hmmm....)
-
Lars Gustäbel yazdı
directories.
-
- 22 Ock, 2007 5 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Georg Brandl yazdı
-
- 21 Ock, 2007 3 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
types.
-
Martin v. Löwis yazdı
-
- 20 Ock, 2007 5 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
-
Martin v. Löwis yazdı
Add /GS- for AMD64 and Itanium builds where missing.
-
- 19 Ock, 2007 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
Will backport.
-
Neal Norwitz yazdı
-
- 18 Ock, 2007 3 kayıt (commit)
-
-
Neal Norwitz yazdı
doesn't support the same funcationality as on Unix. I'm not sure if this fix is the best (or if it will even work)--it's a test to see if the buildbots start passing again. It might be better to not even run this test if it's windows (or non-posix).
-
Fred Drake yazdı
-
Neal Norwitz yazdı
Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode
-
- 17 Ock, 2007 6 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
Andrew M. Kuchling yazdı
[Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them
-
Thomas Heller yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 16 Ock, 2007 3 kayıt (commit)
-
-
Sjoerd Mullender yazdı
variables with nothing. Also added tests. This fixes bug #494589.
-
Marc-André Lemburg yazdı
-
Vinay Sajip yazdı
-
- 15 Ock, 2007 2 kayıt (commit)
-
-
Brett Cannon yazdı
directive that is not documented that strptime will as well.
-
Guido van Rossum yazdı
-
- 14 Ock, 2007 6 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Guido van Rossum yazdı
return negative numbers, per the underlying C implementation.
-
Ka-Ping Yee yazdı
the relevant class instead of documentation on <type 'instance'>).
-
Guido van Rossum yazdı
-
Gerhard Häring yazdı
merged into the 2.5 maintenance branch: - self->statement was not checked while fetching data, which could lead to crashes if you used the pysqlite API in unusual ways. Closing the cursor and continuing to fetch data was enough. - Converters are stored in a converters dictionary. The converter name is uppercased first. The old upper-casing algorithm was wrong and was replaced by a simple call to the Python string's upper() method instead. -Applied patch by Glyph Lefkowitz that fixes the problem with subsequent SQLITE_SCHEMA errors. - Improvement to the row type: rows can now be iterated over and have a keys() method. This improves compatibility with both tuple and dict a lot. - A bugfix for the subsecond resolution in timestamps. - Corrected the way the flags PARSE_DECLTYPES and PARSE_COLNAMES are checked for. Now they work as documented. - gcc on Linux sucks. It exports all symbols by default in shared libraries, so if symbols are not unique it can lead to problems with symbol lookup. pysqlite used to crash under Apache when mod_cache was enabled because both modules had the symbol cache_init. I fixed this by applying the prefix pysqlite_ almost everywhere. Sigh.
-