summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove traces of Mac OS 9 support, again (#9508).Éric Araujo2010-11-064-76/+0
| | | | | | This was done in r80805 (#7908) and erroneously brought back by the distutils revert. This commit removes more code than the original, which was uncomplete. There is no NEWS entry, like in r80805.
* Fix typo from r86170.Éric Araujo2010-11-061-1/+1
|
* Prevent race condition with mkdir in distutils. Patch by Arfrever on #9281.Éric Araujo2010-11-062-3/+7
|
* Add missing NEWS entry for r86239.Éric Araujo2010-11-061-0/+2
|
* Prevent ResourceWarnings in test_gettextÉric Araujo2010-11-061-23/+12
|
* Fix caching error found by regrtest -R (#10229)Éric Araujo2010-11-061-0/+1
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-0641-56/+86
|
* Fix one omission in r78359Éric Araujo2010-11-061-0/+1
|
* Also close file descriptors from os.popen and subprocess.PopenÉric Araujo2010-11-062-20/+26
|
* Issue #10330: trace module can now be used with python built without threads.Alexander Belopolsky2010-11-061-5/+18
|
* Clear up ResourceWarningsBrian Curtin2010-11-061-0/+1
|
* Of course, I forgot one file in r86223.Éric Araujo2010-11-051-2/+4
|
* Add missing entry for r86223.Éric Araujo2010-11-051-0/+3
|
* Always close files in distutils code and tests (#10252).Éric Araujo2010-11-0524-173/+263
|
* More what's newAntoine Pitrou2010-11-051-0/+6
|
* Update 3.2 what's newAntoine Pitrou2010-11-051-6/+43
|
* Issue #10180: Pickling file objects is now explicitly forbidden, sinceAntoine Pitrou2010-11-056-0/+57
| | | | unpickling them produced nonsensical results.
* Output served URL when running ssl_serversAntoine Pitrou2010-11-051-0/+2
|
* Fix test_httplib when built without threadsAntoine Pitrou2010-11-051-1/+1
|
* Fix bootstrap issues when building without threadsAntoine Pitrou2010-11-052-5/+9
|
* Issue #10311: The signal module now restores errno before returning fromAntoine Pitrou2010-11-053-14/+24
| | | | its low-level signal handler. Patch by Hallvard B Furuseth.
* Issue #10282: Add a `nntp_implementation` attribute to NNTP objects.Antoine Pitrou2010-11-054-12/+41
|
* Fixed socket_gethostname() on windows.Hirokazu Yamamoto2010-11-051-6/+9
|
* Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-054-59/+28
| | | | | (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.
* Close subprocess pipes to clean up ResourceWarningsBrian Curtin2010-11-051-0/+4
|
* Fix a number of ResourceWarnings on Windows due to open pipes.Brian Curtin2010-11-051-0/+17
|
* Add socket cleanup for ResourceWarning and update test to use skip decoratorBrian Curtin2010-11-051-2/+2
|
* Merge the doc for assertTrue/False, assert[Not]AlmostEqual, ↵Ezio Melotti2010-11-051-86/+28
| | | | assert[Not]RegexpMatches, rephrase a couple of paragraphs, and remove redundant doc about the msg arg.
* Fix ResourceWarning from subprocess pipes being left open.Brian Curtin2010-11-051-0/+2
|
* Fix ResourceWarning from subprocess pipe.Brian Curtin2010-11-051-0/+1
|
* Close subprocess pipes in _kill. Fixes a number of ResourceWarnings.Brian Curtin2010-11-051-0/+3
|
* Close subprocess pipes in the non-UNIX section of run_cgi.Brian Curtin2010-11-051-0/+2
| | | | Clears a number of ResourceWarnings in test_httpservers.
* Shift the pipe-using code into an else block, then close the pipeBrian Curtin2010-11-051-4/+7
| | | | in finally. Removes two ResourceWarnings.
* Followup to r86170: fix reference leak in str.formatAntoine Pitrou2010-11-051-1/+0
|
* Move glossary entry to the right position and fix link.Georg Brandl2010-11-052-20/+22
|
* Add cleanups to stdout/stderr pipes to remove ResourceWarnings.Brian Curtin2010-11-051-0/+16
|
* Issue #10279: fix test_gc under Win64.Antoine Pitrou2010-11-051-2/+2
|
* Issue #10283: Add a `group_pattern` argument to NNTP.list().Antoine Pitrou2010-11-044-17/+53
|
* Issue #3699: Fix test_bigaddrspace and extend it to test bytestringsAntoine Pitrou2010-11-042-23/+63
| | | | as well as unicode strings. Initial patch by Sandro Tosi.
* Issue #10293: Remove obsolete field in the PyMemoryView structure,Antoine Pitrou2010-11-045-47/+6
| | | | | unused undocumented value PyBUF_SHADOW, and strangely-looking code in PyMemoryView_GetContiguous.
* Move the deprecated aliases in a new section.Ezio Melotti2010-11-041-30/+24
|
* Issue #6081: Add str.format_map. str.format_map(mapping) is similar to ↵Eric Smith2010-11-045-1/+104
| | | | str.format(**mapping), except mapping does not get converted to a dict.
* Issue #10314: improve performance of JSON encoding with sort_keys=TrueAntoine Pitrou2010-11-041-20/+25
|
* Updated PC/VS8.0. (mainly to follow r86137: use temporary dir in ↵Hirokazu Yamamoto2010-11-044-95/+120
| | | | make_buildinfo.c)
* Merge the doc for assertIs[Not], assertIs[Not]None, and assert[Not]IsInstance.Ezio Melotti2010-11-041-32/+9
|
* Can build older OpenSSL in http://svn.python.org/projects/externals/Hirokazu Yamamoto2010-11-043-3/+3
| | | | without Perl again.
* Added svn:ignore.Hirokazu Yamamoto2010-11-040-0/+0
|
* Issue #5391: mmap.read_byte() should return unsigned value [0, 255]Hirokazu Yamamoto2010-11-042-1/+10
| | | | instead of signed value [-127, 128].
* Fix Issue 10307 - compile error in readline.cSenthil Kumaran2010-11-041-1/+1
|
* Fix three ResourceWarnings.Brian Curtin2010-11-041-0/+5
| | | | Mimic the clientTearDown from ThreadedTCPSocketTest, closing the socket.