| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | #3640: Correct a crash in cPickle on 64bit platforms, in the case of deeply n... | Amaury Forgeot d'Arc | 2008-09-11 | 1 | -0/+20 |
|
|
* | kill memoryview.size in favor of len(view) | Benjamin Peterson | 2008-09-10 | 1 | -0/+2 |
|
|
* | Issue #3756: make re.escape() handle bytes as well as str. | Guido van Rossum | 2008-09-10 | 1 | -0/+2 |
|
|
* | Fix formatter usage of filter(). Bug #3800. | Georg Brandl | 2008-09-09 | 1 | -0/+2 |
|
|
* | Issue #3812: Failed to build python if configure --without-threads. | Hirokazu Yamamoto | 2008-09-09 | 1 | -0/+2 |
|
|
* | Added News for r66338 | Hirokazu Yamamoto | 2008-09-09 | 1 | -0/+2 |
|
|
* | Revert r33661, which broke all buildbots. | Amaury Forgeot d'Arc | 2008-09-09 | 1 | -1/+2 |
|
|
* | #3705: Fix crash when given a non-ascii value on the command line for the "-c... | Amaury Forgeot d'Arc | 2008-09-09 | 1 | -2/+1 |
|
|
* | #3791: Remove bsddb from the Windows msi installer, | Amaury Forgeot d'Arc | 2008-09-09 | 1 | -0/+7 |
|
|
* | describe the change merged in r66285 | Gregory P. Smith | 2008-09-07 | 1 | -0/+4 |
|
|
* | Issue #874900: fix behaviour of threading module after a fork. | Antoine Pitrou | 2008-09-06 | 1 | -0/+2 |
|
|
* | fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap, | Gregory P. Smith | 2008-09-06 | 1 | -0/+3 |
|
|
* | Issue #3705: py3k aborts if "-c" or "-m" is given a non-ascii value. | Antoine Pitrou | 2008-09-06 | 1 | -0/+4 |
|
|
* | Fixes release blocker issue #3492 and #3790. | Gregory P. Smith | 2008-09-06 | 1 | -0/+4 |
|
|
* | Merged revisions 66262 via svnmerge from | Benjamin Peterson | 2008-09-06 | 1 | -0/+1 |
|
|
* | Merged revisions 66240 via svnmerge from | Antoine Pitrou | 2008-09-05 | 1 | -0/+7 |
|
|
* | compile _bytesio and _stringio into the binary and initalize stdio before sit... | Benjamin Peterson | 2008-09-05 | 1 | -0/+5 |
|
|
* | #3660: Correct a reference leak in PyUnicode_AsEncodedString when | Amaury Forgeot d'Arc | 2008-09-05 | 1 | -2/+5 |
|
|
* | Issue #3660 (part of): fix a memory leak in _pickle. | Antoine Pitrou | 2008-09-05 | 1 | -0/+2 |
|
|
* | #3773: Check for errors around the use of PyTokenizer_FindEncoding(). | Amaury Forgeot d'Arc | 2008-09-04 | 1 | -0/+3 |
|
|
* | Issue #3160: the "bdist_wininst" distutils command didn't work. | Antoine Pitrou | 2008-09-04 | 1 | -0/+2 |
|
|
* | Issue #1658: dict size is changing during iteration in tkinter.BaseWidget and | Guilherme Polo | 2008-09-04 | 1 | -0/+3 |
|
|
* | PyTokenizer_FindEncoding() always failed because it set the tokenizer state | Brett Cannon | 2008-09-04 | 1 | -0/+4 |
|
|
* | Include a pointer to the pybsddb website with the 'bsddb has been | Gregory P. Smith | 2008-09-04 | 1 | -0/+2 |
|
|
* | clean up some more bsddb scraps | Benjamin Peterson | 2008-09-03 | 1 | -2/+2 |
|
|
* | Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi module | Facundo Batista | 2008-09-03 | 1 | -0/+4 |
|
|
* | remove bsddb | Benjamin Peterson | 2008-09-03 | 1 | -0/+2 |
|
|
* | Issue #3696: Error parsing arguments on OpenBSD <= 4.4 and Cygwin. | Antoine Pitrou | 2008-09-03 | 1 | -0/+5 |
|
|
* | Issue #3697: "Fatal Python error: Cannot recover from stack overflow" | Antoine Pitrou | 2008-09-03 | 1 | -0/+5 |
|
|