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
*
Patch #1429539: pdb now correctly initializes the __main__ module for
Georg Brandl
2007-03-13
1
-9/+16
*
Deprecate commands.getstatus().
Georg Brandl
2007-03-13
1
-0/+2
*
Patch #1393667: pdb now has a "run" command which restarts the debugged
Georg Brandl
2007-03-13
2
-3/+38
*
Patch #1444529: the builtin compile() now accepts keyword arguments.
Georg Brandl
2007-03-13
1
-0/+9
*
Patch #1649190: Adding support for _Bool to ctypes as c_bool, by David Remahl.
Thomas Heller
2007-03-13
3
-3/+33
*
Patch #1530482: add pydoc.render_doc() which returns the documentation
Georg Brandl
2007-03-13
1
-22/+26
*
Patch #1533909: the timeit module now accepts callables in addition to
Georg Brandl
2007-03-13
1
-11/+53
*
Fix a tab.
Georg Brandl
2007-03-13
1
-2/+2
*
Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter
Georg Brandl
2007-03-13
2
-8/+28
*
Patch #1605192: list allowed states in error messages for imaplib.
Georg Brandl
2007-03-13
1
-4/+8
*
Patch #1581073: add a flag to textwrap that prevents the dropping of
Georg Brandl
2007-03-13
2
-4/+16
*
Patch #1603688: ConfigParser.SafeConfigParser now checks values that
Georg Brandl
2007-03-13
2
-2/+23
*
Quick fix for tests that fail on systems with an encoding other
Lars Gustäbel
2007-03-13
1
-6/+7
*
This is the implementation of POSIX.1-2001 (pax) format read/write
Lars Gustäbel
2007-03-13
3
-915/+1407
*
Patch #1449244: Support Unicode strings in
Martin v. Löwis
2007-03-13
2
-2/+11
*
Patch #1569798: fix a bug in distutils when building Python from a
Georg Brandl
2007-03-13
1
-2/+2
*
Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" to
Georg Brandl
2007-03-13
1
-0/+3
*
Patch #1555098: use str.join() instead of repeated string
Georg Brandl
2007-03-13
1
-9/+6
*
Patch #1635454: the csv.DictWriter class now includes the offending
Georg Brandl
2007-03-13
1
-3/+4
*
Patch #1668100: urllib2 now correctly raises URLError instead of
Georg Brandl
2007-03-13
2
-18/+22
*
Fix a typo where the variable name was not updated.
Brett Cannon
2007-03-13
1
-1/+1
*
Add test.test_support.transient_internet . Returns a context manager that
Brett Cannon
2007-03-13
2
-3/+14
*
Whitespace normalization.
Tim Peters
2007-03-12
18
-522/+522
*
Patch #1670993: Refactor test_threadedtempfile.py to use unittest.
Collin Winter
2007-03-12
2
-46/+34
*
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...
Collin Winter
2007-03-12
2
-0/+17
*
Patch #1678088: convert test_operations to use unittest, fold the result into...
Collin Winter
2007-03-12
4
-100/+72
*
Backport from Py3k branch:
Georg Brandl
2007-03-12
1
-4/+59
*
Patch #1677862: Require a space or tab after import in .pth files.
Martin v. Löwis
2007-03-12
1
-1/+1
*
Sane humans would call these invalid tests, but Andrew McNamara pointed out
Skip Montanaro
2007-03-12
1
-0/+4
*
Tokio Kikuchi's fix for SF bug #1629369; folding whitespace allowed in the
Barry Warsaw
2007-03-12
3
-4/+17
*
Patch #1678662: ftp.python.org does not exist. So the testcode in urllib.py m...
Collin Winter
2007-03-12
1
-1/+1
*
Fix resource leak reported in SF #1516995.
Vinay Sajip
2007-03-11
1
-0/+2
*
Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the ...
Collin Winter
2007-03-11
1
-2/+10
*
Add missing "return" statements in exception handler.
Georg Brandl
2007-03-11
1
-0/+2
*
Patch #1599845: Add an option to disable the implicit calls to server_bind() ...
Collin Winter
2007-03-10
3
-8/+11
*
Convert an assert to a raise so it works even in the presence of -O.
Collin Winter
2007-03-10
1
-2/+4
*
Simplify a little by handling the TCP case first.
Neal Norwitz
2007-03-10
1
-16/+16
*
Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to...
Collin Winter
2007-03-10
2
-0/+2
*
* Unlink test files before and after each test; hopefully this will cut down ...
Collin Winter
2007-03-10
1
-105/+62
*
Hashing simplification pointed out by Thomas Wouters.
Collin Winter
2007-03-09
1
-4/+3
*
Bug #1651235: When a tuple was passed to a ctypes function call,
Thomas Heller
2007-03-09
1
-1/+13
*
Patch #1491866: change the complex() constructor to allow parthensized forms....
Collin Winter
2007-03-09
1
-0/+12
*
Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0)
Thomas Heller
2007-03-09
2
-2/+4
*
Patch #957003: Implement smtplib.LMTP.
Martin v. Löwis
2007-03-09
1
-1/+46
*
Patch #1481079: Support of HTTP_REFERER in CGIHTTPServer.py
Collin Winter
2007-03-09
1
-1/+4
*
Introduce test.test_support.TransientResource. It's a context manager to
Brett Cannon
2007-03-08
2
-1/+27
*
Patch #1668482: don't use '-' in mkstemp
Collin Winter
2007-03-08
1
-1/+1
*
SF #1637850: make_table in difflib did not work with unicode
Raymond Hettinger
2007-03-08
1
-5/+4
*
Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctes...
Collin Winter
2007-03-08
1
-0/+3
*
SF 1676321: empty() returned wrong result
Raymond Hettinger
2007-03-08
1
-1/+1
[next]