summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bug #1394868: doc typosGeorg Brandl2006-01-013-5/+5
|
* Patch by Ori Avtalion to fix a minor display glitch in the RightArrow.Barry Warsaw2006-01-012-2/+7
| | | | I will port forward to 2.5.
* Work around test_locale failing on Solaris 10.Martin v. Löwis2005-12-301-3/+8
|
* Use -xcode=pic32 for SunPro.Martin v. Löwis2005-12-303-1/+5
|
* backport Sniffer class fix (rev 41838)Skip Montanaro2005-12-282-1/+5
|
* Bug #999767: make setup.py obey Setup.local wrt shared modulesGeorg Brandl2005-12-271-10/+11
|
* [ 959576 ] Can't build Python on POSIX w/o $HOME (backport)Georg Brandl2005-12-272-1/+5
|
* Revert checkin for bug #1386675.Georg Brandl2005-12-271-6/+6
|
* Bug #1375599: Correct grammar error in tutorialGeorg Brandl2005-12-271-1/+1
|
* Bug #1386675: winreg raises WindowsErrors (backport)Georg Brandl2005-12-271-6/+6
|
* Bug #1389673: document correct return value of set methods (backport)Georg Brandl2005-12-261-5/+5
|
* Bug #954981: urllib2 example wont work w/o ssl (backport)Georg Brandl2005-12-261-1/+2
|
* Bug #839075 (backport): document that highly recursive data cannot be pickledGeorg Brandl2005-12-261-0/+4
|
* Bug #839585: mention % string operator in language ref (backport)Georg Brandl2005-12-261-0/+6
|
* Bug #756104 (backport): document that bufsize in socket.recv() should be smallGeorg Brandl2005-12-261-0/+2
|
* Bug #649974 (backport): make docstrings for url2pathname consistentGeorg Brandl2005-12-264-21/+25
|
* Backport: Patch #1117398: fix cookielib LoadErrorNeal Norwitz2005-12-235-10/+40
|
* Typo fixAndrew M. Kuchling2005-12-221-1/+1
|
* Typo fixAndrew M. Kuchling2005-12-221-1/+1
|
* [ 1388141 ] Minor error in md5 docs (backport)Georg Brandl2005-12-221-1/+1
|
* Bug #1373197: note that os.makedirs does not work with '..'Georg Brandl2005-12-171-0/+2
|
* Bug #1343671: clarify docs for os.removedirsGeorg Brandl2005-12-171-5/+9
|
* Bug #1106572: clarify os.makedirs docs wrt umaskGeorg Brandl2005-12-171-1/+2
|
* Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\'Hye-Shik Chang2005-12-173-13/+20
| | | | just like string codecs.
* Patch #1360443: Make SimpleHTTPServer display unencoded directory names.Georg Brandl2005-12-161-2/+3
|
* Patch #1377848: typo in pyexpat docsGeorg Brandl2005-12-161-1/+1
|
* Patch #1376914: traceback.format_exc() has no "file" argument.Georg Brandl2005-12-161-1/+1
|
* Bug #1378455: a problem of urllib using open_local_file (backport)Georg Brandl2005-12-151-0/+2
|
* Remove reference to open() mode "t" as it is platform dependent.Georg Brandl2005-12-151-1/+1
|
* Bug #1290333: Added a workaround for cjkcodecs' _codecs_cn moduleHye-Shik Chang2005-12-122-0/+11
| | | | build problem on AIX.
* Bug #1368481: python.dir refers to whatsnew23Georg Brandl2005-12-021-1/+1
|
* fix recurring typo: occured --> occurredFred Drake2005-11-306-6/+6
| | | | (already fixed in Python trunk)
* fix indentation; this could not have passedFred Drake2005-11-301-3/+3
|
* Backport checkin:Walter Dörwald2005-11-281-0/+1
| | | | Fix leaked reference to None.
* backport: bug #1365984, urllib and data: URLs^^Georg Brandl2005-11-262-2/+7
|
* Bug #698706: imaplib parsing INTERNALDATE backportGeorg Brandl2005-11-261-1/+1
|
* Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.Martin v. Löwis2005-11-262-6/+25
| | | | Also set _XOPEN_SOURCE to 500.
* Backport checkin:Walter Dörwald2005-11-252-3/+4
| | | | | SF patch #1364946: Add a reference link from the dcoumentation of the encode and decode methods to the documentation of the default error handlers.
* Backport checkin:Walter Dörwald2005-11-251-2/+12
| | | | | | SF patch #1364545: test_cmd_line.py relied on english error messages when invoking the Python interpreter (which didn't work on non-english Windows versions). Check return codes instead.
* bug #1281408: make Py_BuildValue work with unsigned longs and long longsGeorg Brandl2005-11-243-5/+47
|
* Backport of patch #1314396: prevent threading.Thread.join() from blocking if aBrett Cannon2005-11-232-16/+22
| | | | previous call raised an exception (e.g., calling it with an illegal argument).
* Bug #1357604: os.makedirs handles UNC pathsGeorg Brandl2005-11-221-3/+2
|
* added example for the ** operator in function callsGeorg Brandl2005-11-221-0/+14
|
* Patch #1255218: libmultifile.tex: tell what a decoration isGeorg Brandl2005-11-221-3/+3
|
* Bug #869197: setgroups rejects long integer argumentGeorg Brandl2005-11-222-6/+33
|
* Bug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals.Georg Brandl2005-11-221-2/+3
|
* Add a note to os.chown that permission constants can be combinedGeorg Brandl2005-11-221-1/+2
|
* [Patch #1094164] replaceChild(x,x) ends up removing x from the tree. Add ↵Andrew M. Kuchling2005-11-222-2/+13
| | | | fix from Felix Rabe and a test case
* [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and ↵Andrew M. Kuchling2005-11-222-2/+4
| | | | bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo.
* [Bug #449093] FloorDiv AST node type not listedAndrew M. Kuchling2005-11-221-0/+4
|