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
*
#1663329: add os.closerange() to close a range of fds,
Georg Brandl
2008-01-19
2
-7/+8
*
Bug 1277: make Maildir use the user-provided factory instead of hard-wiring M...
Andrew M. Kuchling
2008-01-19
2
-1/+18
*
Fix #1146: TextWrap vs words 1-character shorter than the width.
Georg Brandl
2008-01-19
2
-1/+19
*
Fix #1679: "0x" was taken as a valid integer literal.
Georg Brandl
2008-01-19
3
-1/+8
*
Fix #1693149. Now you can pass several modules separated by
Facundo Batista
2008-01-19
1
-3/+5
*
Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().
Andrew M. Kuchling
2008-01-19
1
-0/+36
*
Disabled test_xmlrpc:test_404. It's causing lots of false alarms.
Christian Heimes
2008-01-19
3
-4/+4
*
Patch #742598 from Michael Pomraning: add .timeout attribute to SocketServer ...
Andrew M. Kuchling
2008-01-19
1
-4/+41
*
Update for threading.local test.
Christian Heimes
2008-01-19
1
-2/+18
*
Added unit test to verify that threading.local doesn't cause ref leaks. It se...
Christian Heimes
2008-01-19
1
-1/+27
*
Fix issue #1822: MIMEMultipart.is_multipart() behaves correctly for a
Facundo Batista
2008-01-19
2
-0/+9
*
Several tweaks: add construction from strings and .from_decimal(), change
Jeffrey Yasskin
2008-01-19
2
-15/+130
*
This got fixed for classic classes in r60057,
Guido van Rossum
2008-01-18
1
-17/+0
*
Added bytes and b'' as aliases for str and ''
Christian Heimes
2008-01-18
2
-4/+28
*
Added LoggerAdapter class, changed copyright dates, made check for extra para...
Vinay Sajip
2008-01-18
1
-5/+95
*
Issue #1861: Add read-only attribute listing upcoming events in the order th...
Raymond Hettinger
2008-01-17
1
-7/+24
*
Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
Gregory P. Smith
2008-01-17
1
-10/+30
*
Comply with RFC 3207.
Gregory P. Smith
2008-01-17
1
-0/+8
*
Make starmap() match its pure python definition and accept any itertable inpu...
Raymond Hettinger
2008-01-17
1
-1/+2
*
Add queues will alternative fetch orders (priority based and stack based).
Raymond Hettinger
2008-01-16
2
-14/+57
*
Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for
Thomas Heller
2008-01-16
1
-1/+1
*
Raise a TypeError instead of a ValueError when too many initializers
Thomas Heller
2008-01-16
1
-4/+4
*
Raise a TypeError if conflicting positional and named arguments are
Thomas Heller
2008-01-16
1
-0/+9
*
Convert the internal ctypes array type cache to a WeakValueDict so
Thomas Heller
2008-01-16
1
-0/+14
*
Docstring typos
Andrew M. Kuchling
2008-01-16
1
-3/+3
*
test_doctest fails since r59984.
Amaury Forgeot d'Arc
2008-01-15
1
-0/+2
*
Refactor if/elif chain for clarity and speed. Remove dependency on subclasse...
Raymond Hettinger
2008-01-15
1
-30/+23
*
Issue #1786 (by myself): pdb should use its own stdin/stdout around an
Guido van Rossum
2008-01-15
1
-2/+8
*
Add rational.Rational as an implementation of numbers.Rational with infinite
Jeffrey Yasskin
2008-01-15
3
-3/+711
*
Temporarily revert 59967 until GC can be added.
Raymond Hettinger
2008-01-15
1
-6/+0
*
Issue 1820: structseq objects did not work with the % formatting operator or...
Raymond Hettinger
2008-01-15
1
-0/+6
*
Typo fixes
Andrew M. Kuchling
2008-01-15
1
-1/+1
*
Fix 1698398: Zipfile.printdir() crashed because the format string expected a...
Raymond Hettinger
2008-01-14
1
-2/+2
*
Now that I've learnt about structseq objects I felt like converting sys.float...
Christian Heimes
2008-01-14
1
-1/+1
*
Applied patch #1816: sys.flags patch
Christian Heimes
2008-01-14
1
-0/+12
*
Added new an better structseq representation. E.g. repr(time.gmtime(0)) now r...
Christian Heimes
2008-01-14
1
-1/+5
*
Check in the patch proposed by Ben Hayden (benjhayden) for issue
Ka-Ping Yee
2008-01-13
1
-3/+5
*
Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
Mark Dickinson
2008-01-12
2
-3/+22
*
Raise an error instead of crashing with a segfault when a NULL
Thomas Heller
2008-01-11
1
-0/+6
*
Speed-up and simplify code urlparse's result objects.
Raymond Hettinger
2008-01-11
1
-52/+6
*
Improve usability of the SequenceMatcher by returning named tuples describing...
Raymond Hettinger
2008-01-11
1
-7/+10
*
Let most inspect functions return named tuples
Raymond Hettinger
2008-01-11
1
-5/+19
*
Have Decimal.as_tuple return a named tuple.
Raymond Hettinger
2008-01-11
1
-1/+7
*
Doctest results return a named tuple for readability
Raymond Hettinger
2008-01-11
2
-70/+73
*
Run doctests on the collections module
Raymond Hettinger
2008-01-11
1
-2/+4
*
Neaten-up the named tuple docs
Raymond Hettinger
2008-01-10
1
-1/+1
*
Closing issue1761.
Amaury Forgeot d'Arc
2008-01-10
1
-0/+12
*
Clarify how to add a field to a named tuple.
Raymond Hettinger
2008-01-10
1
-0/+3
*
Examples for named tuple subclassing should include __slots__
Raymond Hettinger
2008-01-10
1
-1/+3
*
Fixed #1776. __import__() no longer imports modules by file name
Christian Heimes
2008-01-09
1
-1/+11
[next]