| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #4387: binascii now refuses to accept str as binary input. | Martin v. Löwis | 2008-12-02 | 4 | -24/+24 |
|
|
* | Issue #4073: Add 2to3 support to build_scripts, refactor that support | Martin v. Löwis | 2008-12-01 | 3 | -21/+65 |
|
|
* | Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-... | Benjamin Peterson | 2008-11-30 | 3 | -2/+6 |
|
|
* | Merged revisions 67442 via svnmerge from | Benjamin Peterson | 2008-11-30 | 1 | -25/+40 |
|
|
* | Issue #4407: Fix source file that caused the compileall step in Windows | Martin v. Löwis | 2008-11-30 | 1 | -1/+1 |
|
|
* | Fix more threading API related bugs: Thread.get_name() --> Thread.name. | Amaury Forgeot d'Arc | 2008-11-29 | 2 | -3/+3 |
|
|
* | #4455: IDLE failed to display the windows list when two windows have the same... | Amaury Forgeot d'Arc | 2008-11-28 | 1 | -2/+2 |
|
|
* | Merged revisions 67428 via svnmerge from | Benjamin Peterson | 2008-11-28 | 15 | -86/+104 |
|
|
* | Merged revisions 67414 via svnmerge from | Christian Heimes | 2008-11-28 | 1 | -1/+1 |
|
|
* | Fix a broken test_dbm_gnu as introducted by r67380. | Brett Cannon | 2008-11-25 | 1 | -1/+1 |
|
|
* | Second fix for issue #4373 | Christian Heimes | 2008-11-25 | 1 | -0/+10 |
|
|
* | dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For the | Brett Cannon | 2008-11-25 | 3 | -0/+6 |
|
|
* | Merged revisions 67183,67191,67371 via svnmerge from | Martin v. Löwis | 2008-11-25 | 3 | -9/+31 |
|
|
* | dbm.dumb was opening files without specifying the encoding. Caused problem on | Brett Cannon | 2008-11-24 | 1 | -8/+10 |
|
|
* | Merged revisions 67295,67301-67302,67318,67330,67342-67343 via svnmerge from | Amaury Forgeot d'Arc | 2008-11-22 | 2 | -3/+3 |
|
|
* | #4206: fix 2.xisms in multiprocessing docs and docstrings. | Georg Brandl | 2008-11-22 | 1 | -7/+8 |
|
|
* | #4361: fix string.py docstring, clarify that only ASCII characters are in its... | Georg Brandl | 2008-11-22 | 1 | -9/+9 |
|
|
* | make FileIO.mode always include 'b' | Benjamin Peterson | 2008-11-22 | 5 | -13/+15 |
|
|
* | #4383: UnboundLocalError when IDLE cannot connect to its subprocess. | Amaury Forgeot d'Arc | 2008-11-21 | 1 | -3/+4 |
|
|
* | Merged revisions 67320 via svnmerge from | Benjamin Peterson | 2008-11-21 | 1 | -2/+25 |
|
|
* | Bump to 3.0rc3v3.0rc3 | Barry Warsaw | 2008-11-21 | 3 | -9/+9 |
|
|
* | Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes and | Brett Cannon | 2008-11-21 | 2 | -26/+48 |
|
|
* | fix test_gzip | Benjamin Peterson | 2008-11-21 | 1 | -1/+1 |
|
|
* | #4338: Fix the distutils "setup.py upload" command. | Amaury Forgeot d'Arc | 2008-11-20 | 1 | -17/+19 |
|
|
* | Follow-up of r67300: correct a failure in socket.makefile(). | Amaury Forgeot d'Arc | 2008-11-20 | 2 | -5/+16 |
|
|
* | Fix for bug 4362 "FileIO object in io module"; Patch by amaury.forgeotdarc. | Barry Warsaw | 2008-11-20 | 2 | -10/+47 |
|
|
* | Fix for bug 4360 "SystemError when method has both super() & closure". Patch | Barry Warsaw | 2008-11-20 | 1 | -0/+11 |
|
|
* | Issue #4354: Fix distutils register command. | Martin v. Löwis | 2008-11-20 | 1 | -13/+8 |
|
|
* | Merged revisions 67243,67245,67277-67278,67289 via svnmerge from | Benjamin Peterson | 2008-11-19 | 1 | -2/+2 |
|
|
* | Merged revisions 67291 via svnmerge from | Benjamin Peterson | 2008-11-19 | 1 | -0/+10 |
|
|
* | This fixes issue 4332 for Py3k. | Josiah Carlson | 2008-11-19 | 1 | -1/+1 |
|
|
* | Merged revisions 67279 via svnmerge from | Martin v. Löwis | 2008-11-19 | 1 | -2/+2 |
|
|
* | Merged revisions 67246 via svnmerge from | Benjamin Peterson | 2008-11-17 | 1 | -0/+40 |
|
|
* | Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via sv... | Benjamin Peterson | 2008-11-16 | 2 | -6/+8 |
|
|
* | Issue #1721812: Binary operations and copy operations on set/frozenset | Raymond Hettinger | 2008-11-16 | 1 | -4/+9 |
|
|
* | Issue #4296: Fix PyObject_RichCompareBool so that "x in [x]" evaluates to | Mark Dickinson | 2008-11-12 | 2 | -2/+49 |
|
|
* | change the named tuple returned by inspect.getfullargspec to have a 'kwonlyde... | Benjamin Peterson | 2008-11-12 | 1 | -1/+1 |
|
|
* | #2971: test_zipfile64 fails. | Amaury Forgeot d'Arc | 2008-11-12 | 1 | -7/+8 |
|
|
* | Enable this test only when subprocess supports non-ascii arguments. | Amaury Forgeot d'Arc | 2008-11-12 | 1 | -6/+5 |
|
|
* | Temporarily print some information in test_cmd_line, | Amaury Forgeot d'Arc | 2008-11-12 | 1 | -0/+2 |
|
|
* | #3705: Command-line arguments were not correctly decoded when the | Amaury Forgeot d'Arc | 2008-11-11 | 1 | -0/+6 |
|
|
* | #4298: pickle.load() can segfault on invalid or truncated input. | Amaury Forgeot d'Arc | 2008-11-11 | 1 | -0/+5 |
|
|
* | Merged revisions 67180 via svnmerge from | Benjamin Peterson | 2008-11-10 | 5 | -12/+44 |
|
|
* | #4283: fix left-over iteritems() in distutils. | Georg Brandl | 2008-11-08 | 1 | -1/+1 |
|
|
* | update | Barry Warsaw | 2008-11-07 | 1 | -1/+1 |
|
|
* | Bumping to 3.0rc2. | Barry Warsaw | 2008-11-06 | 3 | -7/+7 |
|
|
* | fix #4211: the __path__ of a frozen package should be a list. | Benjamin Peterson | 2008-11-05 | 1 | -0/+1 |
|
|
* | Merged revisions 67089,67091,67101 via svnmerge from | Benjamin Peterson | 2008-11-05 | 2 | -1/+10 |
|
|
* | Fixed issue #3727: poplib module broken by str to unicode conversion | Christian Heimes | 2008-11-05 | 2 | -105/+298 |
|
|
* | Issue #3714: nntplib module broken by str to unicode conversion | Christian Heimes | 2008-11-05 | 1 | -63/+52 |
|
|