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
Commit message (
Expand
)
Author
Age
Files
Lines
*
#4852: Remove dead code in every thread implementation, unused for many years.
Amaury Forgeot d'Arc
2010-02-23
16
-575/+28
*
Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF
Victor Stinner
2010-02-23
3
-2/+26
*
#6544: fix refleak in kqueue, occurring in certain error conditions.
Georg Brandl
2010-02-23
2
-16/+18
*
#8000: fix deprecated directive. What a shame to lose that glorious issue nu...
Georg Brandl
2010-02-23
1
-1/+1
*
Fix #1537721: add writeheader() method to csv.DictWriter.
Dirkjan Ochtman
2010-02-23
4
-0/+20
*
ctypes CThunkObject was not registered correctly with the cycle
Thomas Heller
2010-02-23
3
-3/+23
*
issue#6442 use in operator instead of has_key
Jack Diederich
2010-02-23
1
-1/+1
*
fixup markup error
Jack Diederich
2010-02-23
1
-1/+1
*
unittest.TestResult can now be used with the TextTestRunner. TextTestRunner c...
Michael Foord
2010-02-23
3
-7/+34
*
Fix spacing nit. Thanks Eric Smith for the public humiliation.
Mark Dickinson
2010-02-23
1
-4/+4
*
Make global variable overflowok into a keyword argument; this fixes a failur...
Mark Dickinson
2010-02-23
1
-16/+16
*
fixed #5801: removed spurious empty lines in wsgiref
Tarek Ziadé
2010-02-23
5
-177/+2
*
completed the __all__ list and changed the module doctest
Tarek Ziadé
2010-02-23
1
-4/+5
*
added a note on shutil new APIs
Tarek Ziadé
2010-02-23
1
-1/+4
*
added make_archive (and secondary APIs) to shutil
Tarek Ziadé
2010-02-23
3
-5/+694
*
removed debugging code
Tarek Ziadé
2010-02-23
1
-4/+1
*
Issue 6292: for the moment at least, the test suite passes if run
R. David Murray
2010-02-23
19
-41/+194
*
Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.
Eric Smith
2010-02-23
3
-4/+42
*
Support for old TestResult object (unittest) with warnings when using unsuppo...
Michael Foord
2010-02-22
3
-8/+77
*
#7706: add include guards where they're missing; required for Windows CE
Andrew M. Kuchling
2010-02-22
2
-1/+12
*
#7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).
Andrew M. Kuchling
2010-02-22
1
-1/+1
*
#2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c.
Andrew M. Kuchling
2010-02-22
2
-48/+48
*
* fix issue#7476
Jack Diederich
2010-02-22
3
-0/+6
*
Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.
Andrew M. Kuchling
2010-02-22
32
-1456/+1
*
fixes issue #1522237, bad init check in _threading_local
Jack Diederich
2010-02-22
2
-1/+16
*
#7627: MH.remove() would fail if the MH mailbox was locked;
Andrew M. Kuchling
2010-02-22
2
-10/+9
*
Fix comment typo
Andrew M. Kuchling
2010-02-22
1
-1/+1
*
Issue #7988: Fix default alignment to be right aligned for complex.__format__...
Eric Smith
2010-02-22
3
-10/+45
*
fixes issue #7530, serve_forever()
Jack Diederich
2010-02-22
1
-5/+1
*
Note granting of commit privileges to Larry Hastings
Andrew M. Kuchling
2010-02-22
1
-0/+3
*
#7482: clarify error message in case of division by zero of float and complex...
Ezio Melotti
2010-02-22
2
-4/+4
*
#7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru Chen
Andrew M. Kuchling
2010-02-22
1
-2/+0
*
Clarify description of three-argument pow for Decimal types: the exponent of...
Mark Dickinson
2010-02-22
1
-3/+6
*
#6414: clarify description of processor endianness.
Andrew M. Kuchling
2010-02-22
1
-3/+5
*
#7794: describe 2.6 support for executing directories and zip archives
Andrew M. Kuchling
2010-02-22
1
-0/+7
*
Fix Issue7172 - BaseHTTPServer.BaseHTTPRequestHandler.responses[405] - changing
Senthil Kumaran
2010-02-22
1
-1/+1
*
#7076: mention SystemRandom class near start of the module docs; reword chang...
Andrew M. Kuchling
2010-02-22
1
-1/+5
*
Re-word
Andrew M. Kuchling
2010-02-22
1
-3/+3
*
Silence UnicodeWarning in crazy unittest test.
Michael Foord
2010-02-21
1
-4/+7
*
Reduce number of random tests in test_strtod, to avoid hogging buildbot time.
Mark Dickinson
2010-02-21
1
-36/+30
*
Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot t...
Mark Dickinson
2010-02-21
1
-0/+6
*
Issue #5211: Fix complex type to avoid implicit calls to
Mark Dickinson
2010-02-21
4
-30/+109
*
Issue 7970: When email.Parser.Parser parses a MIME message of type
R. David Murray
2010-02-21
4
-2/+48
*
skip tests with a non-ascii cwd when the file system encoding is ascii
Ezio Melotti
2010-02-20
4
-17/+32
*
Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo")
Senthil Kumaran
2010-02-20
2
-2/+6
*
Remove e assertIs definitions and use correct assert* methods.
Ezio Melotti
2010-02-20
6
-45/+28
*
#3426: os.path.abspath now returns unicode when its arg is unicode.
Ezio Melotti
2010-02-20
8
-6/+57
*
logging: Documented warnings module integration.
Vinay Sajip
2010-02-19
1
-0/+22
*
#7967: PyXML is no more.
Georg Brandl
2010-02-19
1
-7/+0
*
Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by ...
Senthil Kumaran
2010-02-19
2
-2/+12
[next]