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
...
*
Add a regrtest option to re-run in verbose mode immediately after a test fail...
Georg Brandl
2009-10-27
1
-10/+17
*
Try to fix transient refleaks in test_distutils.
Antoine Pitrou
2009-10-27
1
-0/+1
*
Fix transient refleaks in test_urllib2_localnet.
Antoine Pitrou
2009-10-27
1
-2/+10
*
Suppress transient refleaks in test_threading.
Antoine Pitrou
2009-10-27
1
-3/+12
*
Suppress transient refleaks in test_smtplib.
Antoine Pitrou
2009-10-27
1
-4/+20
*
Suppress transient refleaks in test_file2k.
Antoine Pitrou
2009-10-27
1
-0/+2
*
Fix transient refleak in test_sys.
Antoine Pitrou
2009-10-27
1
-2/+6
*
(Hopefully) suppress transient refleaks in test_httpservers.
Antoine Pitrou
2009-10-27
1
-0/+2
*
Suppress transient refleaks in test_asyncore
Antoine Pitrou
2009-10-27
1
-25/+29
*
Issue #7205: Fix a possible deadlock when using a BZ2File object from several...
Antoine Pitrou
2009-10-27
1
-0/+18
*
use 'is' instead of id()
Benjamin Peterson
2009-10-26
1
-8/+7
*
Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in
Mark Dickinson
2009-10-26
1
-1/+4
*
Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in
Mark Dickinson
2009-10-26
1
-2/+0
*
Skip readline tests if readline module is not available.
Mark Dickinson
2009-10-26
1
-2/+3
*
fixed warning and error message
Tarek Ziadé
2009-10-24
5
-5/+5
*
fixed finally state in distutils.test_util
Tarek Ziadé
2009-10-24
1
-1/+1
*
Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode
Tarek Ziadé
2009-10-24
7
-5/+64
*
Issue #7117 (backport py3k float repr) continued:
Mark Dickinson
2009-10-24
1
-0/+2
*
#7066 - Fixed distutils.archive_util.make_archive behavior so it restores the...
Tarek Ziadé
2009-10-24
2
-5/+22
*
Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept ...
Antoine Pitrou
2009-10-24
1
-0/+5
*
Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and io.String...
Antoine Pitrou
2009-10-24
2
-9/+152
*
Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of io.StringI...
Antoine Pitrou
2009-10-24
1
-0/+7
*
Improve some docstrings in the 'warnings' module.
Neil Schemenauer
2009-10-23
1
-1/+13
*
Issue #7194: test_thread could try to release an unacquired mutex (and fail).
Antoine Pitrou
2009-10-23
1
-1/+4
*
Fix Windows buildbot failure
Antoine Pitrou
2009-10-23
1
-3/+2
*
Per the discussion in issue6882, backport the try/finally work that was done ...
Eric Smith
2009-10-22
1
-11/+40
*
Revert unintended change.
Georg Brandl
2009-10-22
1
-1/+1
*
Fix punctuation.
Georg Brandl
2009-10-22
1
-1/+1
*
Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.
Vinay Sajip
2009-10-21
1
-0/+10
*
Test wouldn't work in debug mode.
Antoine Pitrou
2009-10-20
1
-0/+1
*
Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
Antoine Pitrou
2009-10-20
1
-0/+24
*
Issue #7099: Decimal.is_normal should return True for all nonzero
Mark Dickinson
2009-10-20
2
-13/+13
*
Issue #7133: SSL objects now support the new buffer API.
Antoine Pitrou
2009-10-19
1
-14/+15
*
Clarify error report message, and don't recommend running in verbose
R. David Murray
2009-10-19
1
-1/+3
*
Eliminate warning message that looks like an error message. When it was
R. David Murray
2009-10-19
1
-2/+0
*
Only run test_curses when sys.__stdout__ is a tty. This eliminates the
R. David Murray
2009-10-19
1
-0/+2
*
Issue #7151: regrtest would generate a JSON failure if there was output
R. David Murray
2009-10-18
1
-13/+16
*
Add a comment about unreachable code, and fix a typo
Antoine Pitrou
2009-10-18
1
-1/+3
*
Add a test for same-thread asynchronous exceptions (see #1779233).
Antoine Pitrou
2009-10-18
1
-0/+19
*
Restore sys.path in test_tk
Nick Coghlan
2009-10-18
1
-4/+4
*
Silence a deprecation warning by using the appropriate replacement construct
Nick Coghlan
2009-10-18
1
-1/+3
*
Changed distutils tests to avoid environment alteration
Tarek Ziadé
2009-10-18
13
-34/+67
*
Fix for issue 7149: a regression in 2.6.3 that causes an exception when
Ronald Oussoren
2009-10-18
1
-2/+9
*
Using CleanImport to revert a reload of the os module doesn't work due to fun...
Nick Coghlan
2009-10-18
2
-5/+24
*
Protect against attempts to replace PyNumber_Add with PyNumber_InPlaceAdd in ...
Mark Dickinson
2009-10-17
1
-0/+4
*
Don't replace sys.path in test_site
Nick Coghlan
2009-10-17
1
-2/+2
*
Avoid replacing existing modules and sys.path in import tests
Nick Coghlan
2009-10-17
2
-10/+14
*
Also check and restore identity of sys.path, sys.argv and os.environ rather t...
Nick Coghlan
2009-10-17
1
-6/+9
*
Move restoration of the os.environ object into the context manager where it b...
Nick Coghlan
2009-10-17
2
-1/+1
*
Revert changes made to environment in test_httpservers
Nick Coghlan
2009-10-17
1
-3/+6
[prev]
[next]