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
*
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
*
Added __enter__ and __exit__ functions to HKEY object
Christian Heimes
2008-01-08
1
-20/+25
*
Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects
Andrew M. Kuchling
2008-01-08
1
-2/+128
*
Issue #1757: The hash of a Decimal instance is no longer affected
Facundo Batista
2008-01-08
2
-3/+28
*
It's verbose, not debug
Christian Heimes
2008-01-08
1
-1/+1
*
Expand comment.
Raymond Hettinger
2008-01-08
1
-1/+2
*
Use get() instead of pop() for the optimized version of _replace().
Raymond Hettinger
2008-01-07
1
-1/+1
*
Cleanup named tuple subclassing example.
Raymond Hettinger
2008-01-07
1
-3/+4
*
Fixed indention problem that caused the second TIPC test to run on systems wi...
Christian Heimes
2008-01-07
1
-1/+1
*
#467924, patch by Alan McIntyre: Add ZipFile.extract and ZipFile.extractall.
Georg Brandl
2008-01-07
2
-1/+113
*
Issue #1646: Make socket support TIPC. The socket module now has support
Christian Heimes
2008-01-07
1
-0/+82
*
Add another named tuple subclassing example.
Raymond Hettinger
2008-01-07
1
-0/+8
*
Fix issue 1747: allow classic classes to be checked for being subclasses of
Jeffrey Yasskin
2008-01-07
2
-5/+12
*
Cleanup subclassing example to more clearly show fixed-width print format.
Raymond Hettinger
2008-01-07
1
-2/+1
*
Add subclassing example to docs for named tuples.
Raymond Hettinger
2008-01-07
1
-2/+9
*
Speed-up named tuple's _make() constructor.
Raymond Hettinger
2008-01-06
1
-2/+2
*
#1325: Add docs and tests for zipimporter.archive and zipimporter.prefix.
Georg Brandl
2008-01-06
1
-0/+5
*
#1591: Clarify docstring of Popen3.
Georg Brandl
2008-01-06
1
-2/+2
*
#1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.
Georg Brandl
2008-01-06
4
-0/+6
*
#1696393: don't check for '.' and '..' in ntpath.walk since
Georg Brandl
2008-01-06
1
-5/+3
*
Small code simplification. Forgot that classmethods can be called from intan...
Raymond Hettinger
2008-01-06
1
-1/+1
*
Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.
Guido van Rossum
2008-01-05
2
-7/+11
*
Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.
Georg Brandl
2008-01-05
1
-1/+1
*
Fix comment typo
Andrew M. Kuchling
2008-01-05
1
-1/+1
*
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
Jeffrey Yasskin
2008-01-05
4
-39/+16
*
clean up a comment
Fred Drake
2008-01-05
1
-2/+2
*
Add error-checking to namedtuple's _replace() method.
Raymond Hettinger
2008-01-05
2
-1/+11
*
Improve namedtuple's _cast() method with a docstring, new name, and error-che...
Raymond Hettinger
2008-01-05
2
-6/+16
*
Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.
Guido van Rossum
2008-01-05
2
-4/+22
*
Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
Guido van Rossum
2008-01-05
2
-0/+13
[next]