summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Add various itemsAndrew M. Kuchling2010-04-291-13/+51
* Fix style issues in test_sslAntoine Pitrou2010-04-281-138/+143
* Clarify and fix the documentation for IOBase.close()Antoine Pitrou2010-04-281-2/+4
* State clearly that truncate() doesn't move the file position,Antoine Pitrou2010-04-281-6/+3
* Fixed Issue6312 - httplib fails with HEAD requests to pages with "transfer-en...Senthil Kumaran2010-04-284-0/+39
* Add version changed note for -m tinkering with sys.argv[0] during the search ...Nick Coghlan2010-04-281-0/+2
* Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' in...Nick Coghlan2010-04-283-4/+9
* Also mention patch submitter's name in NEWS, not just in the commit messageNick Coghlan2010-04-281-1/+2
* Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module co...Nick Coghlan2010-04-285-26/+118
* Issue #3928: Support 'os.mknod()' in SolarisJesus Cea2010-04-283-2/+18
* Issue #7449, last part (11): fix many tests if thread support is disabledVictor Stinner2010-04-2726-41/+101
* Issue #7449, part 10: test_cmd imports trace module using test_support.import...Victor Stinner2010-04-271-2/+3
* Partial revert of r80556 (Issue #7449, part 5, fix ctypes test)Victor Stinner2010-04-271-23/+19
* Issue #7449, part 9: fix test_xmlrpclib for missing threading moduleVictor Stinner2010-04-271-3/+23
* Issue #7449, part 8: don't skip the whole test_asynchat if threading is missingVictor Stinner2010-04-271-79/+82
* Issue #7449, part 7: simplify threading detection in test_capiVictor Stinner2010-04-271-10/+6
* Issue #7449, part 6: fix test_hashlib for missing threading moduleVictor Stinner2010-04-271-4/+2
* make slice notation in (r)find docs consistentBenjamin Peterson2010-04-271-7/+7
* Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newlineAntoine Pitrou2010-04-274-1/+9
* Issue #7449, part 5: split Test.test_open() of ctypes/test/test_errno.pyVictor Stinner2010-04-271-49/+57
* Issue #7449, part 4: skip test_multiprocessing if thread support is disabledVictor Stinner2010-04-271-3/+4
* Issue #7449 part 3, test_doctest: import trace module in test_coverage()Victor Stinner2010-04-271-1/+2
* Issue #7449, part 2: regrtest.py -j option requires thread supportVictor Stinner2010-04-271-1/+5
* Issue #7449, part 1: fix test_support.py for Python compiled without threadVictor Stinner2010-04-272-4/+20
* correct signatureBenjamin Peterson2010-04-271-1/+1
* condense importBenjamin Peterson2010-04-271-2/+1
* fold __future__ importsBenjamin Peterson2010-04-271-2/+1
* fix commentBenjamin Peterson2010-04-271-1/+1
* reject None as the buffering argument like the C implementation does #8546Benjamin Peterson2010-04-273-5/+5
* Issue #8549: Fix compiling the _ssl extension under AIX. Patch byAntoine Pitrou2010-04-273-1/+5
* socket.error can really happen here, and fix a possible NameErrorAntoine Pitrou2010-04-271-1/+4
* Qualify or remove or bare excepts. Simplify exception handling in places.Antoine Pitrou2010-04-271-193/+136
* replace custom code with standard library functionality (HTTPServer.shutdown())Antoine Pitrou2010-04-271-48/+7
* Remove uses of find_unused_port() in test_ssl, and small cleanupsAntoine Pitrou2010-04-271-19/+17
* Adding versionadded to various new unittest functions in documentationMichael Foord2010-04-261-0/+8
* Issue #6656: fix locale.format_string to handle escaped percents and mappings.R. David Murray2010-04-263-14/+45
* When calling getpeername() in SSLSocket.__init__, only silence exceptionsAntoine Pitrou2010-04-261-1/+4
* Issue 8325: Improve regrtest --help text.R. David Murray2010-04-261-26/+33
* Revert an accidental commit from r80492.Brett Cannon2010-04-251-36/+17
* When DeprecationWarning was silenced by default, it also silenced any use of -QBrett Cannon2010-04-254-23/+47
* Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown,Antoine Pitrou2010-04-253-12/+44
* Replace a Lock with a better suited Event.Antoine Pitrou2010-04-251-6/+5
* Adding unittest.removeHandler function / decorator for removing the signal.SI...Michael Foord2010-04-254-4/+67
* Patch from Tim Hatch: Make socket setblocking <-> settimeout examples symmetric.Georg Brandl2010-04-251-1/+1
* Fix code example to have valid syntax so that it can be highlighted.Georg Brandl2010-04-251-1/+1
* Patch from Tim Hatch: Minor spelling changes to _winreg docs.Georg Brandl2010-04-251-5/+5
* Patch from Tim Hatch: Remove reference to winreg being the fabled high-level ...Georg Brandl2010-04-251-2/+2
* Patch from Tim Hatch: Better cross-referencing in socket and winreg docs.Georg Brandl2010-04-252-50/+67
* Remove LaTeXy index entry syntax.Georg Brandl2010-04-251-2/+2
* #8522: use with statement instead of try-finally for file handling.Georg Brandl2010-04-251-4/+1