Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove traces of rfc822. | Georg Brandl | 2008-06-12 | 6 | -11/+12 |
| | |||||
* | remove the rfc822 module | Benjamin Peterson | 2008-06-12 | 7 | -1614/+4 |
| | |||||
* | Remove last traces of mimetools. | Georg Brandl | 2008-06-12 | 8 | -43/+20 |
| | |||||
* | Removed _stringio from Windows build. | Alexandre Vassalotti | 2008-06-12 | 4 | -13/+0 |
| | | | | | | | | For some yet unknown reason, MSVC's linker fails to resolve _stringio's module initializer (PyInit__stringio). This probably means the module is not build correctly. Therefore, I am removing Windows support temporarily until I find how to add new modules properly for MSVC. | ||||
* | Restore _pickle module accelerator module. | Alexandre Vassalotti | 2008-06-12 | 8 | -126/+4683 |
| | | | | | Removed Windows support temporarily. 64bit bug with integer unpickling is now fixed. | ||||
* | Fixed test_urllib2 by coercing Message object to str | Alexandre Vassalotti | 2008-06-12 | 1 | -1/+1 |
| | | | | before passing it to io.StringIO.write(). | ||||
* | remove a mimetools import | Benjamin Peterson | 2008-06-12 | 1 | -1/+0 |
| | |||||
* | attempt to fix multiprocessing | Benjamin Peterson | 2008-06-12 | 1 | -4/+2 |
| | |||||
* | Blocked revisions 64169 via svnmerge | Benjamin Peterson | 2008-06-12 | 0 | -0/+0 |
| | | | | | | | | ........ r64169 | benjamin.peterson | 2008-06-12 09:23:49 -0500 (Thu, 12 Jun 2008) | 1 line deprecated mimetools ........ | ||||
* | add a period | Benjamin Peterson | 2008-06-12 | 1 | -1/+1 |
| | |||||
* | actually remove the mimetools module | Benjamin Peterson | 2008-06-12 | 5 | -448/+2 |
| | |||||
* | fix compiler warning | Benjamin Peterson | 2008-06-12 | 1 | -1/+1 |
| | |||||
* | Patch for issue 2848, mostly by Humberto Diogenes, with a couple of | Barry Warsaw | 2008-06-12 | 23 | -204/+148 |
| | | | | small fixes by Barry. This removes mimetools from the stdlib. | ||||
* | revert the addition of _pickle because it was causing havok with 64-bit | Benjamin Peterson | 2008-06-12 | 12 | -4695/+126 |
| | |||||
* | Update NEWS and ACKS for issue 2849. | Barry Warsaw | 2008-06-12 | 2 | -0/+3 |
| | |||||
* | Patch by Humberto Diogenes for issue 2849, removing rfc822 module from | Barry Warsaw | 2008-06-12 | 2 | -12/+15 |
| | | | | | | | the standard library. There are still a few cases of it in Demo and Tools, but that's fine for now. These should eventually get cleaned up. mimetools still has an import of rfc822, but mimetools itself should go away. | ||||
* | fix test_pyclbr which failed because the new StringIO presented bases it ↵ | Benjamin Peterson | 2008-06-12 | 1 | -1/+1 |
| | | | | couldn't find | ||||
* | Fixed test_tempfile. | Alexandre Vassalotti | 2008-06-12 | 2 | -1/+17 |
| | | | | | Added the encoding, errors, line_buffering attribute to io.StringIO make more compatible with TextIOWrapper's API. | ||||
* | Attempt to fix the Windows build for _stringio and _pickle. | Alexandre Vassalotti | 2008-06-12 | 2 | -0/+21 |
| | | | | I don't have any win32 machine in my reach. So, I can't test this. | ||||
* | Fixed test_sys failure due to removal of the unused slots | Alexandre Vassalotti | 2008-06-12 | 1 | -5/+10 |
| | | | | in PyNumberMethods. | ||||
* | Added Windows build config for _stringio and _pickle. | Alexandre Vassalotti | 2008-06-11 | 2 | -4/+16 |
| | |||||
* | Removed exception renaming cruft in pickle.py. | Alexandre Vassalotti | 2008-06-11 | 1 | -3/+0 |
| | |||||
* | Issue 2918: Merge StringIO and cStringIO. | Alexandre Vassalotti | 2008-06-11 | 8 | -22/+702 |
| | |||||
* | fix test_ssl | Benjamin Peterson | 2008-06-11 | 1 | -4/+4 |
| | |||||
* | Issue 2917: Merge the pickle and cPickle module. | Alexandre Vassalotti | 2008-06-11 | 8 | -126/+4685 |
| | |||||
* | fix hanging test_xmlrpc | Benjamin Peterson | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods | Benjamin Peterson | 2008-06-11 | 11 | -32/+3 |
| | |||||
* | Add dummy_threading to toctree. | Georg Brandl | 2008-06-11 | 1 | -0/+1 |
| | |||||
* | Blocked revisions 64128,64133 via svnmerge | Benjamin Peterson | 2008-06-11 | 0 | -0/+0 |
| | | | | | | | | | | | | ........ r64128 | benjamin.peterson | 2008-06-11 12:50:00 -0500 (Wed, 11 Jun 2008) | 2 lines add aliases to threading module ........ r64133 | benjamin.peterson | 2008-06-11 13:02:31 -0500 (Wed, 11 Jun 2008) | 2 lines add old names back into __all__ ........ | ||||
* | Merged revisions 64125 via svnmerge from | Benjamin Peterson | 2008-06-11 | 20 | -131/+126 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64125 | benjamin.peterson | 2008-06-11 12:27:50 -0500 (Wed, 11 Jun 2008) | 2 lines give the threading API PEP 8 names ........ | ||||
* | #2630: Implement PEP 3138. | Georg Brandl | 2008-06-11 | 25 | -1032/+1329 |
| | | | | | | | The repr() of a string now contains printable Unicode characters unescaped. The new ascii() builtin can be used to get a repr() with only ASCII characters in it. PEP and patch were written by Atsuo Ishimoto. | ||||
* | Correctly export the module init function. Needed on Windows. | Amaury Forgeot d'Arc | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Adaptation to py3k. | Amaury Forgeot d'Arc | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Merged revisions 64130 via svnmerge from | Georg Brandl | 2008-06-11 | 1 | -7/+7 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64130 | georg.brandl | 2008-06-11 19:57:44 +0200 (Wed, 11 Jun 2008) | 2 lines Clarify what ":errorhandler" refers to. ........ | ||||
* | Follow-up of PEP 3121: | Amaury Forgeot d'Arc | 2008-06-11 | 1 | -2/+2 |
| | | | | Correct the exported symbol for extension modules built by distutils | ||||
* | Issue 1342: Python could not start if installed in a directory | Amaury Forgeot d'Arc | 2008-06-11 | 3 | -5/+15 |
| | | | | | | | | with non-ascii characters. This is the simple fix, which uses the FileSystemEncoding. Replacing all the char* with unicode strings is a major rewrite, and needs more thinking. | ||||
* | Merged revisions 64123 via svnmerge from | Benjamin Peterson | 2008-06-11 | 2 | -0/+578 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64123 | benjamin.peterson | 2008-06-11 11:50:57 -0500 (Wed, 11 Jun 2008) | 2 lines fix Windows building for multiprocessing ........ | ||||
* | Merged revisions 64104,64117 via svnmerge from | Benjamin Peterson | 2008-06-11 | 32 | -1/+12513 |
| | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64104 | benjamin.peterson | 2008-06-10 21:40:25 -0500 (Tue, 10 Jun 2008) | 2 lines add the multiprocessing package to fulfill PEP 371 ........ r64117 | benjamin.peterson | 2008-06-11 07:26:31 -0500 (Wed, 11 Jun 2008) | 2 lines fix import of multiprocessing by juggling imports ........ | ||||
* | #3021: Antoine Pitrou's Lexical exception handlers | Benjamin Peterson | 2008-06-11 | 17 | -303/+410 |
| | |||||
* | Remove PyInit_cStringIO again. | Martin v. Löwis | 2008-06-11 | 1 | -1/+0 |
| | |||||
* | Fix typo. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Add missing NULL return value. | Martin v. Löwis | 2008-06-11 | 1 | -1/+1 |
| | |||||
* | Update to PEP 3121. | Martin v. Löwis | 2008-06-11 | 1 | -109/+110 |
| | |||||
* | Fix module initialization glitches. | Martin v. Löwis | 2008-06-11 | 2 | -3/+1 |
| | |||||
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 113 | -851/+2226 |
| | |||||
* | block 64105 | Gregory P. Smith | 2008-06-11 | 0 | -0/+0 |
| | |||||
* | revert r64092 because http://xmlrpc.com is back up | Benjamin Peterson | 2008-06-11 | 1 | -2/+1 |
| | |||||
* | Windows has no os.uname. Use platform.uname() instead. | Amaury Forgeot d'Arc | 2008-06-10 | 1 | -1/+1 |
| | |||||
* | block 64093 as its 2.6 only. | Gregory P. Smith | 2008-06-10 | 0 | -0/+0 |
| | |||||
* | Temporarily disable test_xmlrpc_net because xmlrpc.com is broken | Benjamin Peterson | 2008-06-10 | 1 | -1/+2 |
| |