summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* #10680: fix mutually exclusive arguments in argument groups.Georg Brandl2011-01-302-0/+41
* #10961: fix exception handling in new pydoc server code.Georg Brandl2011-01-302-99/+105
* #11069: fix the IDLE Stack Viewer, by not using "list" as a variable name.Georg Brandl2011-01-301-4/+4
* #9124: mailbox now accepts binary input and uses binary internallyR. David Murray2011-01-302-131/+354
* Issue #10845: Improve compatibility between multiprocessing on Windows and pa...Nick Coghlan2011-01-301-1/+9
* Protect logging call against None argument (fixes #11045).Éric Araujo2011-01-291-1/+2
* Issue #10939: Make Internaldate2tuple test more robust.Alexander Belopolsky2011-01-291-6/+8
* Issue 11052: Correct IDLE menu accelerators on Mac OS X for SaveNed Deily2011-01-291-2/+2
* Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,Ned Deily2011-01-291-2/+2
* Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using theNed Deily2011-01-291-1/+6
* Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe PetersonAlexander Belopolsky2011-01-292-3/+14
* Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).Victor Stinner2011-01-291-0/+3
* Issue #11302: missing type check on _string.formatter_field_name_split and _s...Eric Smith2011-01-291-0/+52
* Issue 10573: revert unittest docs to first / secondMichael Foord2011-01-281-6/+6
* Issue #11020: Command-line pyclbr was broken because of missing 2-to-3Raymond Hettinger2011-01-271-1/+1
* Issue #11018: fix a test to not be a no-op in test_bz2.Antoine Pitrou2011-01-261-1/+1
* #11019: Make BytesGenerator handle Message with None body.R. David Murray2011-01-262-0/+9
* Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into aRaymond Hettinger2011-01-262-2/+6
* Revert r88197. I'll refix correctly once there is a test.R. David Murray2011-01-261-5/+2
* Fix BytesGenerator._handle_text() if the message has no payload (None)Victor Stinner2011-01-261-2/+5
* fix import in email.message_from_binary_file()Victor Stinner2011-01-251-1/+1
* Issue #11004: Repair edge case in deque.count().Raymond Hettinger2011-01-251-0/+9
* Tighten the restrictions on the test_sys test which triggers a fatal error whenBrett Cannon2011-01-251-2/+2
* another pretty crasher served up by pypyBenjamin Peterson2011-01-251-0/+20
* #10974: IDLE no longer crashes if its recent files list includes filesNed Deily2011-01-241-2/+4
* Issue #11000 ast.parse parses source, not just expressions.Terry Reedy2011-01-241-4/+4
* Issue #9509: make argarse properly handle IOErrors raised by argparse.FileTyp...Steven Bethard2011-01-242-15/+22
* Make the type consistent for hashlib algorithm constants. (Reviewed by Benja...Raymond Hettinger2011-01-242-3/+3
* Skip a recursion depth check test when running under CPython and have a traceBrett Cannon2011-01-231-0/+2
* Fix typo.Raymond Hettinger2011-01-231-1/+1
* Add entry for reprlib.Raymond Hettinger2011-01-231-0/+1
* #10983: fix several bugs in the _tunnel implementation that seem to have miss...Georg Brandl2011-01-221-3/+5
* To match the behaviour of HTTP server, the HTTP client library now also encodesArmin Ronacher2011-01-222-3/+9
* Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.Armin Ronacher2011-01-222-2/+12
* Issue #10949: Improved robustness of rotating file handlers.Vinay Sajip2011-01-211-0/+2
* Fix JSON docs about loads() accepting only str objects, not bytes.Antoine Pitrou2011-01-211-0/+2
* Issue #10955: Fix a potential crash when trying to mmap() a file past itsAntoine Pitrou2011-01-201-0/+13
* Issue #10934: Fixed and expanded Internaldate2tuple() andAlexander Belopolsky2011-01-191-4/+10
* Issue #10451: memoryview objects could allow to mutate a readable buffer.Antoine Pitrou2011-01-182-1/+15
* Remove out-of-date commentRaymond Hettinger2011-01-161-4/+0
* Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1Antoine Pitrou2011-01-151-5/+6
* Bump to 3.2rc1.Georg Brandl2011-01-152-2/+2
* Update pydoc topics.Georg Brandl2011-01-151-11/+11
* Issue #10916: mmap should not segfault when a file is mapped using 0 asAntoine Pitrou2011-01-151-0/+13
* #10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5,Ned Deily2011-01-152-0/+24
* cgi: use isinstance(x, list) instead of type(x) == type([])Victor Stinner2011-01-141-3/+3
* Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, notVictor Stinner2011-01-142-79/+186
* test_urlparse: add tests for encoding and errors argumentsVictor Stinner2011-01-141-0/+27
* Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl()Victor Stinner2011-01-141-5/+19
* Issue 10899: Remove function type annotations from the stdlibRaymond Hettinger2011-01-132-18/+24