summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complainWalter Dörwald2005-08-306-5/+173
| | | | | about illegal code points. The codec now supports PEP 293 style error handlers. (This is a variant of the Nik Haldimann's patch that detects truncated data)
* SF #1275796, fix distutils typo "sortcut" -> "shortcut"Neal Norwitz2005-08-301-1/+1
|
* Add to-do listAndrew M. Kuchling2005-08-301-0/+13
|
* Remove rexec howto; it's kind of pointless nowAndrew M. Kuchling2005-08-301-61/+0
|
* Commit the howto source to the main Python repository, with Fred's approvalAndrew M. Kuchling2005-08-309-0/+4340
|
* Fix logic error introduced in last commit. Also add a comment to explain whatBrett Cannon2005-08-291-2/+5
| | | | the code is doing.
* Add missing \end, noted by George YoshidaAndrew M. Kuchling2005-08-291-0/+1
|
* fix bug where str.find() was being misused where __contains__ should have beenBrett Cannon2005-08-271-1/+1
| | | | used.
* Write section on PEP 342Andrew M. Kuchling2005-08-271-10/+112
|
* patch [ 1274550 ] libtarfile.tex: external URL changedGeorg Brandl2005-08-271-2/+2
|
* patch [ 1274630 ] documentation fixesGeorg Brandl2005-08-273-7/+10
|
* patch [ 1274630 ] documentation fixesGeorg Brandl2005-08-271-1/+1
|
* Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128.Martin v. Löwis2005-08-273-14/+49
| | | | Will backport to 2.4.
* Whitespace normalization (via reindent.py).Tim Peters2005-08-2610-23/+19
|
* testSeekBackwardsFromEnd(): Repair obvious syntax error.Tim Peters2005-08-261-1/+1
|
* Add list() around xreadlines()Georg Brandl2005-08-261-2/+2
|
* *** empty log message ***Georg Brandl2005-08-261-11/+11
|
* __new__ is a static methodGeorg Brandl2005-08-261-1/+1
|
* patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieveGeorg Brandl2005-08-263-17/+102
|
* SF bug #1072182: bad arg type to isspace in struct moduleRaymond Hettinger2005-08-261-3/+3
|
* patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on WindowsGeorg Brandl2005-08-263-9/+19
|
* typoGeorg Brandl2005-08-261-1/+1
|
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-2613-13/+100
| | | | (fixes bug #1119418)
* bug [ 1248199 ] shelve .sync operation not documentedGeorg Brandl2005-08-251-0/+8
|
* bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-4/+11
|
* bug [ 1262320 ] minidom.py alternate newl support is brokenGeorg Brandl2005-08-251-6/+6
|
* bug [ 1261229 ] __new__ is class methodGeorg Brandl2005-08-251-1/+1
|
* Minor spelling nit.Georg Brandl2005-08-251-1/+1
|
* Correcting my last BZ2 entry. Adding one for #1215928.Georg Brandl2005-08-251-3/+5
|
* Once upon a time, I used to know TeX...Georg Brandl2005-08-251-3/+3
|
* Make IDNA return an empty string when the input is empty. Fixes #1163178.Martin v. Löwis2005-08-253-0/+14
| | | | Will backport to 2.4.
* Correct test suite for #848017.Georg Brandl2005-08-252-4/+5
|
* Patch #1160164: Use ReleaseItanium for zlib build.Martin v. Löwis2005-08-252-2/+5
| | | | Will backport to 2.4.
* patch #848017: make Cookie more RFC-compliant.Georg Brandl2005-08-243-45/+45
|
* Bug #735248: Fix urllib2.parse_http_list.Georg Brandl2005-08-242-39/+44
|
* Add findnocoding.py and pysource.py.Georg Brandl2005-08-241-0/+2
|
* Bug 1016563: Bug in urllib2 proxy authGeorg Brandl2005-08-241-1/+1
|
* Patch [ 1062060 ] fix for 1016880 urllib.urlretrieve silently truncates dwnldGeorg Brandl2005-08-243-2/+48
|
* Patch [ 784089 ] A program to scan python files and list those require codingGeorg Brandl2005-08-243-0/+241
|
* Patch #1167716: Support Unicode filenames in mkpath. Fixes #1121494.Martin v. Löwis2005-08-242-1/+3
| | | | Will backport to 2.4.
* Correct names of sha modules.Raymond Hettinger2005-08-241-2/+2
|
* patch [ 1141428 ] more __contains__ testsGeorg Brandl2005-08-242-2/+29
|
* [ 1113421 ] New tutorial tests in test_generators.pyGeorg Brandl2005-08-241-0/+78
|
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-242-5/+9
| | | | Will backport to 2.4.
* Return complete lines from codec stream readersMartin v. Löwis2005-08-243-4/+26
| | | | | | even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484. Will backport to 2.4.
* bug [ 1192315 ] 'clear -1' in pdbGeorg Brandl2005-08-242-1/+6
|
* bug [ 1190204 ] 3.29 site is confusing re site-packages on WindowsGeorg Brandl2005-08-242-2/+4
|
* bug [ 1193849 ] os.path.expanduser documentation wrt. empty $HOMEGeorg Brandl2005-08-242-8/+18
|
* bug [ 728515 ] mmap's resize method resizes the file in win32 but not unixGeorg Brandl2005-08-244-1/+23
|
* SF bug #1100368: Wrong "type()" syntax in docsRaymond Hettinger2005-08-241-17/+21
| | | | | | Docs were missing the name/bases/dict form of type(). (Much of the wording contributed by Steven Bethard.)