summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove traces of rfc822.Georg Brandl2008-06-126-11/+12
|
* remove the rfc822 moduleBenjamin Peterson2008-06-127-1614/+4
|
* Remove last traces of mimetools.Georg Brandl2008-06-128-43/+20
|
* Removed _stringio from Windows build.Alexandre Vassalotti2008-06-124-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 Vassalotti2008-06-128-126/+4683
| | | | | Removed Windows support temporarily. 64bit bug with integer unpickling is now fixed.
* Fixed test_urllib2 by coercing Message object to strAlexandre Vassalotti2008-06-121-1/+1
| | | | before passing it to io.StringIO.write().
* remove a mimetools importBenjamin Peterson2008-06-121-1/+0
|
* attempt to fix multiprocessingBenjamin Peterson2008-06-121-4/+2
|
* Blocked revisions 64169 via svnmergeBenjamin Peterson2008-06-120-0/+0
| | | | | | | | ........ r64169 | benjamin.peterson | 2008-06-12 09:23:49 -0500 (Thu, 12 Jun 2008) | 1 line deprecated mimetools ........
* add a periodBenjamin Peterson2008-06-121-1/+1
|
* actually remove the mimetools moduleBenjamin Peterson2008-06-125-448/+2
|
* fix compiler warningBenjamin Peterson2008-06-121-1/+1
|
* Patch for issue 2848, mostly by Humberto Diogenes, with a couple ofBarry Warsaw2008-06-1223-204/+148
| | | | small fixes by Barry. This removes mimetools from the stdlib.
* revert the addition of _pickle because it was causing havok with 64-bitBenjamin Peterson2008-06-1212-4695/+126
|
* Update NEWS and ACKS for issue 2849.Barry Warsaw2008-06-122-0/+3
|
* Patch by Humberto Diogenes for issue 2849, removing rfc822 module fromBarry Warsaw2008-06-122-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 Peterson2008-06-121-1/+1
| | | | couldn't find
* Fixed test_tempfile.Alexandre Vassalotti2008-06-122-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 Vassalotti2008-06-122-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 slotsAlexandre Vassalotti2008-06-121-5/+10
| | | | in PyNumberMethods.
* Added Windows build config for _stringio and _pickle.Alexandre Vassalotti2008-06-112-4/+16
|
* Removed exception renaming cruft in pickle.py.Alexandre Vassalotti2008-06-111-3/+0
|
* Issue 2918: Merge StringIO and cStringIO.Alexandre Vassalotti2008-06-118-22/+702
|
* fix test_sslBenjamin Peterson2008-06-111-4/+4
|
* Issue 2917: Merge the pickle and cPickle module.Alexandre Vassalotti2008-06-118-126/+4685
|
* fix hanging test_xmlrpcBenjamin Peterson2008-06-111-1/+1
|
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-1111-32/+3
|
* Add dummy_threading to toctree.Georg Brandl2008-06-111-0/+1
|
* Blocked revisions 64128,64133 via svnmergeBenjamin Peterson2008-06-110-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 fromBenjamin Peterson2008-06-1120-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 Brandl2008-06-1125-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'Arc2008-06-111-1/+1
|
* Adaptation to py3k.Amaury Forgeot d'Arc2008-06-111-1/+1
|
* Merged revisions 64130 via svnmerge fromGeorg Brandl2008-06-111-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'Arc2008-06-111-2/+2
| | | | Correct the exported symbol for extension modules built by distutils
* Issue 1342: Python could not start if installed in a directoryAmaury Forgeot d'Arc2008-06-113-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 fromBenjamin Peterson2008-06-112-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 fromBenjamin Peterson2008-06-1132-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 handlersBenjamin Peterson2008-06-1117-303/+410
|
* Remove PyInit_cStringIO again.Martin v. Löwis2008-06-111-1/+0
|
* Fix typo.Martin v. Löwis2008-06-111-1/+1
|
* Add missing NULL return value.Martin v. Löwis2008-06-111-1/+1
|
* Update to PEP 3121.Martin v. Löwis2008-06-111-109/+110
|
* Fix module initialization glitches.Martin v. Löwis2008-06-112-3/+1
|
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-11113-851/+2226
|
* block 64105Gregory P. Smith2008-06-110-0/+0
|
* revert r64092 because http://xmlrpc.com is back upBenjamin Peterson2008-06-111-2/+1
|
* Windows has no os.uname. Use platform.uname() instead.Amaury Forgeot d'Arc2008-06-101-1/+1
|
* block 64093 as its 2.6 only.Gregory P. Smith2008-06-100-0/+0
|
* Temporarily disable test_xmlrpc_net because xmlrpc.com is brokenBenjamin Peterson2008-06-101-1/+2
|