summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| | * | | | | | | | | use '->' to indicate return valuesBenjamin Peterson2011-05-241-3/+3
| | |/ / / / / / / /
| | * | | | | | | | must clear an AttributeError if it is setBenjamin Peterson2011-05-231-2/+6
| | * | | | | | | | handle old-style instancesBenjamin Peterson2011-05-231-3/+10
| | * | | | | | | | correctly lookup __dir__Benjamin Peterson2011-05-233-3/+9
| | * | | | | | | | Null merge from 2.6 branch.Barry Warsaw2011-05-230-0/+0
| | |\ \ \ \ \ \ \ \ | | | | |/ / / / / / | | | |/| | | | | |
| | | * | | | | | | Replay changeset 70249:b571c7a8cf2e from fubar branch. Original commitBarry Warsaw2011-05-232-2/+12
| | | * | | | | | | Replay changeset 70248:c714e2f92f63 from fubar branch. Original commitBarry Warsaw2011-05-237-7/+26
| | | * | | | | | | Replay changeset 70238:03e488b5c009 from fubar branch. Original commitBarry Warsaw2011-05-2316-35/+45
| | * | | | | | | | test_codecs now removes the temporay file (created by the test)Victor Stinner2011-05-231-7/+6
| | * | | | | | | | Issue 12003: fixing error in xrange alternative sampleEli Bendersky2011-05-231-1/+1
| | * | | | | | | | Forward merge.Barry Warsaw2011-05-230-0/+0
| | |\ \ \ \ \ \ \ \ | | | |/ / / / / / /
| | | * | | | | | | These files have Windows line endings in 2.6.Barry Warsaw2011-05-231-0/+6
| | * | | | | | | | Issue #12012: test_ssl uses test_support.import_module()Victor Stinner2011-05-221-9/+1
| | * | | | | | | | Issue 12126: removing incorrect claim about return value of selectEli Bendersky2011-05-221-2/+1
| | * | | | | | | | Simplify exampleRaymond Hettinger2011-05-211-4/+0
| | * | | | | | | | Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-213-42/+27
| | * | | | | | | | this should actually be an IOErrorBenjamin Peterson2011-05-201-1/+1
| | * | | | | | | | add example for not using accessBenjamin Peterson2011-05-201-1/+20
| | * | | | | | | | #12072: add missing parenthesis in the doc. Patch by Sandro Tosi.Ezio Melotti2011-05-201-1/+1
| | * | | | | | | | Minor code cleanup.Raymond Hettinger2011-05-181-1/+1
| | * | | | | | | | merge headsBenjamin Peterson2011-05-1735-1033/+308
| | |\ \ \ \ \ \ \ \
| | | * | | | | | | | Issue #12057: Fix .hgeol and test_multibytecodec_support for the conversion ofVictor Stinner2011-05-172-6/+14
| | | * | | | | | | | (backport) Fixes #11088: IDLE crashes when using F5 to run a script on OSX wi...Ronald Oussoren2011-05-172-0/+20
| | | * | | | | | | | (backport)Fix #10154 and #10090: locale normalizes the UTF-8 encoding to "UTF...Ronald Oussoren2011-05-172-1/+4
| | | * | | | | | | | #12092: backport rephrasing of a paragraph in the tutorial.Ezio Melotti2011-05-171-4/+3
| | | * | | | | | | | #12093: fix typo in struct doc. Patch by Sandro Tosi.Ezio Melotti2011-05-171-1/+1
| | | * | | | | | | | Fix closes issue #12088 - fixes the tarfile.extractall issue when theSenthil Kumaran2011-05-172-1/+63
| | | * | | | | | | | Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymoreVictor Stinner2011-05-161-1/+1
| | | * | | | | | | | Issue #12057: Convert CJK encoding testcase BLOB into multiple text filesVictor Stinner2011-05-1625-1019/+202
| | * | | | | | | | | stop using the old brain-dead interface for providing attributes/methodsBenjamin Peterson2011-05-172-120/+122
| | |/ / / / / / / /
| | * | | | | | | | NEWS entry for fix of issue #9516Ronald Oussoren2011-05-151-0/+3
| | * | | | | | | | Issue #9516: avoid errors in sysconfig when MACOSX_DEPLOYMENT_TARGET is set i...Ronald Oussoren2011-05-155-26/+105
| | * | | | | | | | Port #6498 fix: fix several misspellings of "SystemExit" as "SystemError".Georg Brandl2011-05-152-6/+6
| | * | | | | | | | Fixes Issue #12059: Properly handle missing hash functions even whenGregory P. Smith2011-05-142-20/+41
| | * | | | | | | | Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tailNadeem Vawda2011-05-143-7/+24
| | * | | | | | | | #11979: improve wording and markup in sockets howto. Patch by Xavier Morel.Ezio Melotti2011-05-141-16/+17
| | * | | | | | | | #7960: fix docstrings for captured_output and captured_stdout.Ezio Melotti2011-05-141-8/+8
| | * | | | | | | | #5723: Improve json tests to be executed with and without accelerations.Ezio Melotti2011-05-1420-213/+271
| | * | | | | | | | Change import_fresh_module to work with packages.Ezio Melotti2011-05-141-10/+6
| | * | | | | | | | Issue #11896: Save on Close failed despite selecting "Yes" in dialog.Kurt B. Kaiser2011-05-133-32/+34
| | * | | | | | | | Issue #12062: In the `io` module, fix a flushing bug when doing a certainAntoine Pitrou2011-05-123-1/+32
| | * | | | | | | | #12061: remove duplicate glossary entry.Georg Brandl2011-05-121-20/+0
| | * | | | | | | | #12051: Fix segfault in json.dumps() while encoding highly-nested objects usi...Ezio Melotti2011-05-103-3/+39
| | * | | | | | | | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-105-6/+20
| | * | | | | | | | Issue 12047: Expand the style guide.Raymond Hettinger2011-05-101-0/+104
| | * | | | | | | | (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-095-34/+52
| | * | | | | | | | (Merge 3.1) Issue #1195: Fix input() if it is interrupted by CTRL+d and thenVictor Stinner2011-05-092-0/+4
| | * | | | | | | | Some more tests were incorrectly marked as C specific.Ezio Melotti2011-05-091-13/+14
| | * | | | | | | | Issue 11164: Remove obsolete allnodes test from minidom test.Martin v. Löwis2011-05-092-20/+2
| | * | | | | | | | #11910: Fix test_heapq to skip the C tests when _heapq is missing.Ezio Melotti2011-05-092-15/+31