| Commit message (Expand) | Author | Age | Files | Lines |
* | #3705: Command-line arguments were not correctly decoded when the | Amaury Forgeot d'Arc | 2008-11-11 | 1 | -0/+3 |
|
|
* | #4298: pickle.load() can segfault on invalid or truncated input. | Amaury Forgeot d'Arc | 2008-11-11 | 1 | -1/+3 |
|
|
* | fix the socketserver demo code for py3k | Benjamin Peterson | 2008-11-08 | 2 | -0/+6 |
|
|
* | #4283: fix left-over iteritems() in distutils. | Georg Brandl | 2008-11-08 | 1 | -0/+2 |
|
|
* | Merged revisions 67149 via svnmerge from | Martin v. Löwis | 2008-11-07 | 1 | -0/+5 |
|
|
* | name the release | Benjamin Peterson | 2008-11-07 | 1 | -2/+3 |
|
|
* | post release cleanup | Barry Warsaw | 2008-11-07 | 1 | -0/+12 |
|
|
* | Merged revisions 67120 via svnmerge from | Martin v. Löwis | 2008-11-06 | 1 | -0/+2 |
|
|
* | Bumping to 3.0rc2. | Barry Warsaw | 2008-11-06 | 2 | -7/+4 |
|
|
* | period | Benjamin Peterson | 2008-11-05 | 1 | -1/+1 |
|
|
* | fix #4211: the __path__ of a frozen package should be a list. | Benjamin Peterson | 2008-11-05 | 1 | -0/+3 |
|
|
* | Fixed issue #3727: poplib module broken by str to unicode conversion | Christian Heimes | 2008-11-05 | 1 | -0/+2 |
|
|
* | Issue #3714: nntplib module broken by str to unicode conversion | Christian Heimes | 2008-11-05 | 1 | -0/+2 |
|
|
* | Issue #1210: Fixed imaplib | Christian Heimes | 2008-11-05 | 1 | -0/+2 |
|
|
* | Fixed issue #4233. | Christian Heimes | 2008-11-05 | 1 | -0/+5 |
|
|
* | Merged revisions 67098 via svnmerge from | Martin v. Löwis | 2008-11-04 | 1 | -0/+2 |
|
|
* | Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv... | Benjamin Peterson | 2008-11-03 | 1 | -0/+1 |
|
|
* | #3626: On cygwin, starting "python z" would not display any error message: | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -1/+4 |
|
|
* | Merged revisions 67049 via svnmerge from | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -0/+3 |
|
|
* | Issue 3723: Fixed initialization of subinterpreters | Christian Heimes | 2008-10-30 | 1 | -0/+2 |
|
|
* | Issue #4213: The file system encoding is now normalized by the codec subsyste... | Christian Heimes | 2008-10-30 | 1 | -0/+3 |
|
|
* | Issue #4200: Changed the atexit module to store its state in its PyModuleDef ... | Christian Heimes | 2008-10-30 | 1 | -0/+3 |
|
|
* | Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient ... | Christian Heimes | 2008-10-30 | 1 | -0/+3 |
|
|
* | #4170: Fix segfault when pickling a defauldict object. | Amaury Forgeot d'Arc | 2008-10-30 | 1 | -0/+3 |
|
|
* | restore compilation on OpenBSD #4146 | Benjamin Peterson | 2008-10-19 | 1 | -0/+2 |
|
|
* | #3664: The pickle module could segfault if a Pickler instance is not correctl... | Amaury Forgeot d'Arc | 2008-10-17 | 1 | -1/+4 |
|
|
* | Issue #3717: Fix Demo/embed/demo.c. | Martin v. Löwis | 2008-10-17 | 1 | -0/+2 |
|
|
* | Merged revisions 66958 via svnmerge from | Martin v. Löwis | 2008-10-17 | 1 | -0/+2 |
|
|
* | Latin-1 source code was not being properly decoded when passed through | Brett Cannon | 2008-10-17 | 1 | -0/+2 |
|
|
* | Victor Stinner's patch to make telnetlib use bytes 3725 | Benjamin Peterson | 2008-10-15 | 1 | -0/+2 |
|
|
* | Issue #4072: Restore build_py_2to3. Add a distutils demo for | Martin v. Löwis | 2008-10-15 | 1 | -0/+7 |
|
|
* | Merged revisions 66881 via svnmerge from | Martin v. Löwis | 2008-10-13 | 1 | -0/+5 |
|
|
* | Issues #2384 and #3975: Tracebacks were not correctly printed when the source... | Amaury Forgeot d'Arc | 2008-10-09 | 1 | -0/+4 |
|
|
* | Issue #3740: Null-initialize module state. | Martin v. Löwis | 2008-10-07 | 1 | -0/+2 |
|
|
* | Merged revisions 66814 via svnmerge from | Martin v. Löwis | 2008-10-06 | 1 | -0/+3 |
|
|
* | Issue #3187: Add sys.setfilesystemencoding. | Martin v. Löwis | 2008-10-03 | 1 | -0/+2 |
|
|
* | Issue #3187: Better support for "undecodable" filenames. Code by Victor | Guido van Rossum | 2008-10-02 | 1 | -2/+8 |
|
|
* | Merged revisions 66686 via svnmerge from | Martin v. Löwis | 2008-09-29 | 1 | -0/+3 |
|
|
* | #3911 FTP.makeport was giving bad port numbers | Benjamin Peterson | 2008-09-27 | 1 | -0/+2 |
|
|
* | #3946 fix PyObject_CheckBuffer on a memoryview object | Benjamin Peterson | 2008-09-26 | 1 | -0/+2 |
|
|
* | #3929: dbm.open() would try to raise a tuple. This does not work anymore wit... | Amaury Forgeot d'Arc | 2008-09-25 | 1 | -0/+4 |
|
|
* | Merged revisions 66616 via svnmerge from | Martin v. Löwis | 2008-09-25 | 1 | -0/+2 |
|
|
* | Merged revisions 66611 via svnmerge from | Thomas Heller | 2008-09-24 | 1 | -0/+3 |
|
|
* | Issue #3659: Values of string subclasses were not handled correctly when used | Gerhard Häring | 2008-09-22 | 1 | -0/+5 |
|
|
* | #1688: On Windows, the input() prompt was not correctly displayed if it | Amaury Forgeot d'Arc | 2008-09-21 | 1 | -0/+3 |
|
|
* | Bug #3884: Make the turtle module toplevel again. | Martin v. Löwis | 2008-09-21 | 1 | -0/+2 |
|
|
* | done with rc1 | Barry Warsaw | 2008-09-18 | 1 | -0/+12 |
|
|
* | bumping to 3.0rc1v3.0rc1 | Barry Warsaw | 2008-09-18 | 2 | -2/+2 |
|
|
* | Merged revisions 66457-66459,66465-66468,66483-66485,66487-66491 via svnmerge... | Benjamin Peterson | 2008-09-17 | 1 | -8/+21 |
|
|
* | Issue #3782: os.write() must not accept unicode strings | Antoine Pitrou | 2008-09-15 | 1 | -0/+2 |
|
|