summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* provides a clearer warning message when cheap inheritance with the ↵Giampaolo Rodolà2010-05-061-2/+3
| | | | underlying socket object is used
* Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; ↵Giampaolo Rodolà2010-05-063-5/+42
| | | | asyncore.__getattr__ cheap inheritance caused confusing error messages when accessing undefined class attributes; added an alias for __str__ which now is used as a fallback for __repr__
* Add back in a line that was unneeded which advanced a pointer, but commentedBrett Cannon2010-05-061-0/+1
| | | | | | out as it is currently unneeded. This effectively adds back in the line removed in r80809 as a comment.
* Change section title; point to unittest2Andrew M. Kuchling2010-05-061-2/+5
|
* Add 2 items; record ideas for two initial sections; clarify wordingAndrew M. Kuchling2010-05-061-5/+20
|
* Describe ElementTree 1.3; rearrange new-module sections; describe dict views ↵Andrew M. Kuchling2010-05-061-72/+165
| | | | as sets; small edits and items
* `self` doesn't exist hereAntoine Pitrou2010-05-061-3/+3
|
* Use anonymous hyperlinksAndrew M. Kuchling2010-05-061-4/+4
|
* Fix #7863. Properly identify Windows 7 and Server 2008 R2.Brian Curtin2010-05-061-17/+34
| | | | | Removed various unused code and added a way to correctly determine server vs. workstation via the registry.
* Add various itemsAndrew M. Kuchling2010-05-061-7/+39
|
* Reword paragraph; fix filename, which should be pyconfig.hAndrew M. Kuchling2010-05-061-3/+3
|
* Have the serve.py script announce the directory it isR. David Murray2010-05-061-0/+1
| | | | | serving and which port it is serving it on (I can never remember the default port number it uses...)
* Untabify Modules/posixmodule.c (2)Victor Stinner2010-05-061-10/+10
| | | | Fix some more functions by hand
* Untabify Modules/posixmodule.cVictor Stinner2010-05-051-5047/+5047
| | | | | Run Antoine Pitrou "untabify" script + manual editions (OS/2 and some continuation lines).
* Revert a change where an expression is not needed now, but could be in the ↵Brett Cannon2010-05-051-0/+1
| | | | future.
* Issue #1533: test_range in test_builtin: fix test comment and add testMark Dickinson2010-05-051-2/+2
| | | | for rejection of small floats. Thanks Alexander Belopolsky.
* removed non needed linesTarek Ziadé2010-05-051-2/+1
|
* Issue #8625: Turn off gcc optimization in debug builds.Mark Dickinson2010-05-053-3/+8
|
* Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fillsTarek Ziadé2010-05-053-10/+112
|
* Issue 8628: fix incorrect documentation for numbers.Complex.imag.Mark Dickinson2010-05-051-2/+2
|
* Mention how Clang's static anaylzer was run over Objects/ and Python/.Brett Cannon2010-05-051-0/+2
|
* Remove an unneeded variable assignment.Brett Cannon2010-05-051-1/+0
| | | | Found using Clang's static analyzer.
* Explicitly add stdio.h and string.h to make strtod.c work standalone.Brett Cannon2010-05-051-6/+9
| | | | Found using Clang's static analyzer.
* Change to a Py_XDECREF and fix some whitespace.Brett Cannon2010-05-051-8/+8
| | | | Found using Clang's static analyzer.
* Remove an unnecessary variable assignment.Brett Cannon2010-05-051-1/+0
| | | | Found using Clang's static analyzer.
* Remove two unneeded branches to an 'if' statement by applying De Morgan's LawBrett Cannon2010-05-051-73/+68
| | | | | | | | | and creating a single 'if' statement along with a NULL default value for a variable. Also clean up a bunch of whitespace. Found using Clang's static analyzer.
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
| | | | Found using Clang's static analyzer.
* Remove an unneeded variable and fix a little whitespace.Brett Cannon2010-05-051-3/+2
| | | | Found using Clang's static analyzer.
* Fix whitespace.Brett Cannon2010-05-051-8/+8
|
* Partially revert the over-reaching r80813.Brett Cannon2010-05-054-78/+85
|
* Remove three unneeded variable assignments.Brett Cannon2010-05-055-89/+79
| | | | Found using Clang's static analyzer.
* Remove an unneeded assignment.Brett Cannon2010-05-051-2/+2
| | | | Found using Clang's static analyzer.
* Remove an unneeded variable assignment.Brett Cannon2010-05-051-2/+1
| | | | Found using Clang's static analyzer.
* Remove an unneeded variable.Brett Cannon2010-05-051-2/+0
| | | | Found using Clang's static analyzer.
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
| | | | Found using Clang's static analyzer.
* Remove extraneous whitespace.Brett Cannon2010-05-053-51/+51
|
* Remove an unnecessary variable.Brett Cannon2010-05-051-3/+0
| | | | Found using Clang's static analyzer.
* In a number of places code still reversRonald Oussoren2010-05-0530-268/+71
| | | | | | | | | to "sys.platform == 'mac'" and that is dead code because it refers to a platform that is no longer supported (and hasn't been supported for several releases). Fixes issue #7908 for the trunk.
* Issue #8600: fix test_gdb failures when gdb issues some spurious warnings.Antoine Pitrou2010-05-051-0/+5
|
* Issue #7472: remove unused code from email.encoders.encode_7or8bit.R. David Murray2010-05-052-7/+8
| | | | | | | | | Yukihiro Nakadaira noticed a typo in encode_7or8bit that was trying to special case iso-2022 codecs. It turns out that the code in question is never used, because whereas it was designed to trigger if the payload encoding was eight bit but its output encoding was 7 bit, in practice the payload is always converted to the 7bit encoding before encode_7or8bit is called. Patch by Shawat Anand.
* Untabify Modules/_io/fileio.cAntoine Pitrou2010-05-051-705/+705
|
* NEWSBarry Warsaw2010-05-051-0/+2
|
* Bug 7755: audiotest.au is arguably copyrighted material, but definitely makesBarry Warsaw2010-05-053-1/+1
| | | | | Debian unhappy. The actual contents of the audio clip are unimportant, so replace it with something that we know is okay. Guido likes woodpeckers.
* Untabify Modules/_ssl.cAntoine Pitrou2010-05-051-1346/+1346
|
* Force exit using os._exit instead of sys.exit,Ronald Oussoren2010-05-051-1/+1
| | | | | this makes sure that the child does not continue testing.
* The C function used by uuid.uuid4 is broken onRonald Oussoren2010-05-053-0/+44
| | | | | | | | | | OSX 10.6 in that after os.fork() the parent and child generate the same sequence of UUIDs. This patch falls back to the the Python implementation on OSX 10.6 or later. Fixes issue #8621.
* Update the NEWS entry for issue #8211.Marc-André Lemburg2010-05-051-2/+2
|
* Issue #8313: traceback.format_exception_only() encodes unicode message toVictor Stinner2010-05-053-2/+20
| | | | ASCII with backslashreplace error handler if str(value) failed
* Remove reference to unused source file.Thomas Heller2010-05-041-4/+0
|
* Fix test_gzip failure on OS X. The failure was a result of trying to fflushMark Dickinson2010-05-041-1/+1
| | | | a file that wasn't open for writing. Patch by Antoine Pitrou.