index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
#11019: Make BytesGenerator handle Message with None body.
R. David Murray
2011-01-26
2
-0/+9
*
Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a
Raymond Hettinger
2011-01-26
2
-2/+6
*
Revert r88197. I'll refix correctly once there is a test.
R. David Murray
2011-01-26
1
-5/+2
*
Fix BytesGenerator._handle_text() if the message has no payload (None)
Victor Stinner
2011-01-26
1
-2/+5
*
fix import in email.message_from_binary_file()
Victor Stinner
2011-01-25
1
-1/+1
*
Issue #11004: Repair edge case in deque.count().
Raymond Hettinger
2011-01-25
1
-0/+9
*
Tighten the restrictions on the test_sys test which triggers a fatal error when
Brett Cannon
2011-01-25
1
-2/+2
*
another pretty crasher served up by pypy
Benjamin Peterson
2011-01-25
1
-0/+20
*
#10974: IDLE no longer crashes if its recent files list includes files
Ned Deily
2011-01-24
1
-2/+4
*
Issue #11000 ast.parse parses source, not just expressions.
Terry Reedy
2011-01-24
1
-4/+4
*
Issue #9509: make argarse properly handle IOErrors raised by argparse.FileTyp...
Steven Bethard
2011-01-24
2
-15/+22
*
Make the type consistent for hashlib algorithm constants. (Reviewed by Benja...
Raymond Hettinger
2011-01-24
2
-3/+3
*
Skip a recursion depth check test when running under CPython and have a trace
Brett Cannon
2011-01-23
1
-0/+2
*
Fix typo.
Raymond Hettinger
2011-01-23
1
-1/+1
*
Add entry for reprlib.
Raymond Hettinger
2011-01-23
1
-0/+1
*
#10983: fix several bugs in the _tunnel implementation that seem to have miss...
Georg Brandl
2011-01-22
1
-3/+5
*
To match the behaviour of HTTP server, the HTTP client library now also encodes
Armin Ronacher
2011-01-22
2
-3/+9
*
Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.
Armin Ronacher
2011-01-22
2
-2/+12
*
Issue #10949: Improved robustness of rotating file handlers.
Vinay Sajip
2011-01-21
1
-0/+2
*
Fix JSON docs about loads() accepting only str objects, not bytes.
Antoine Pitrou
2011-01-21
1
-0/+2
*
Issue #10955: Fix a potential crash when trying to mmap() a file past its
Antoine Pitrou
2011-01-20
1
-0/+13
*
Issue #10934: Fixed and expanded Internaldate2tuple() and
Alexander Belopolsky
2011-01-19
1
-4/+10
*
Issue #10451: memoryview objects could allow to mutate a readable buffer.
Antoine Pitrou
2011-01-18
2
-1/+15
*
Remove out-of-date comment
Raymond Hettinger
2011-01-16
1
-4/+0
*
Fix mmap and test_mmap under Windows too (followup to r88022)
v3.2rc1
Antoine Pitrou
2011-01-15
1
-5/+6
*
Bump to 3.2rc1.
Georg Brandl
2011-01-15
2
-2/+2
*
Update pydoc topics.
Georg Brandl
2011-01-15
1
-11/+11
*
Issue #10916: mmap should not segfault when a file is mapped using 0 as
Antoine Pitrou
2011-01-15
1
-0/+13
*
#10907: Warn OS X 10.6 IDLE users to use ActiveState Tcl/Tk 8.5,
Ned Deily
2011-01-15
2
-0/+24
*
cgi: use isinstance(x, list) instead of type(x) == type([])
Victor Stinner
2011-01-14
1
-3/+3
*
Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not
Victor Stinner
2011-01-14
2
-79/+186
*
test_urlparse: add tests for encoding and errors arguments
Victor Stinner
2011-01-14
1
-0/+27
*
Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl()
Victor Stinner
2011-01-14
1
-5/+19
*
Issue 10899: Remove function type annotations from the stdlib
Raymond Hettinger
2011-01-13
2
-18/+24
*
Issue #10899: Move function type annotations into docstrings.
Raymond Hettinger
2011-01-13
1
-30/+36
*
More PEP 8: no space around "=" in argument lists.
Georg Brandl
2011-01-13
1
-11/+10
*
Issue 10899: Remove function type annotations from the stdlib
Raymond Hettinger
2011-01-13
1
-1/+1
*
Issue 10899: Remove function type annotations from the stdlib
Raymond Hettinger
2011-01-13
2
-15/+15
*
Issue #10899: No function type annotations in the standard library.
Raymond Hettinger
2011-01-12
1
-31/+31
*
Fix test_bigaddrspace (some tests didn't trigger the expected MemoryError)
Antoine Pitrou
2011-01-12
1
-25/+43
*
A better message again
Antoine Pitrou
2011-01-12
1
-1/+1
*
More informative skip message in @bigaddrspace
Antoine Pitrou
2011-01-12
1
-3/+7
*
Fix @bigmemtest when no limit is given by the user (oops)
Antoine Pitrou
2011-01-12
1
-1/+1
*
Make test skipping message nicer, and remove the rather useless "overhead" pa...
Antoine Pitrou
2011-01-12
1
-20/+10
*
Remove the funky function annotation from numbers.py.
Raymond Hettinger
2011-01-12
1
-1/+1
*
Fix the expected memory use of utf-8 encoding. Also, release the
Antoine Pitrou
2011-01-12
1
-3/+7
*
Remove function annotations that slipped into _abcoll.
Raymond Hettinger
2011-01-12
1
-4/+4
*
Issue #10822: Fix test_posix:test_getgroups failure under Solaris. Patch
Antoine Pitrou
2011-01-12
1
-1/+4
*
don't segfault on deleting __abstractmethods__ #10892
Benjamin Peterson
2011-01-12
1
-1/+5
*
oops, wrong class
Benjamin Peterson
2011-01-12
1
-7/+7
[next]