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
...
*
Fixed #5316 : test failure in test_site
Tarek Ziadé
2009-02-25
2
-6/+4
*
Expand upon test_site.test_s_option to try to debug its failure.
Brett Cannon
2009-02-24
1
-1/+2
*
Backport 69934: Register xrange() as a Sequence.
Raymond Hettinger
2009-02-24
2
-0/+4
*
Fix call to os.waitpid, it does not take keyword args.
Neil Schemenauer
2009-02-24
1
-1/+1
*
more test coverage
Tarek Ziadé
2009-02-23
2
-0/+150
*
Removing unused __main__ sections
Tarek Ziadé
2009-02-22
2
-9/+0
*
removing map and lambda usage, so the test is similar to py3k's branch one
Tarek Ziadé
2009-02-22
1
-2/+3
*
moved distutils.text_file tests into a real unittest class
Tarek Ziadé
2009-02-22
2
-77/+87
*
Revert debugging statements, culprit is possibly test_distutils (see #5316)
Antoine Pitrou
2009-02-22
1
-2/+1
*
Try to make sense of the test_site buildbot failures
Antoine Pitrou
2009-02-22
1
-1/+2
*
Issue #5341: Fix a variety of spelling errors.
Mark Dickinson
2009-02-21
27
-38/+38
*
Speedup and simplify negative counter using count's new step argument.
Raymond Hettinger
2009-02-21
1
-3/+3
*
Fix keyword arguments for itertools.count().
Raymond Hettinger
2009-02-21
1
-0/+2
*
Issue #5295: Typos in turtle.py
Mark Dickinson
2009-02-20
1
-21/+21
*
Issue 5176: special-case string formatting in BINARY_MODULO implementation. T...
Collin Winter
2009-02-20
1
-0/+6
*
#5287: Add exception handling around findCaller() call to help out IronPython.
Vinay Sajip
2009-02-19
1
-1/+6
*
Inline coefficients in gamma(). Add reflection formula. Add comments.
Raymond Hettinger
2009-02-19
1
-10/+18
*
Add some cross-references to the docs. Simplify the python code equivalent f...
Raymond Hettinger
2009-02-19
1
-3/+3
*
Add keyword arg support to itertools.repeat().
Raymond Hettinger
2009-02-19
1
-0/+1
*
Add keyword arg support to itertools.compress().
Raymond Hettinger
2009-02-19
1
-0/+1
*
fixed the data_files inclusion behavior
Tarek Ziadé
2009-02-17
2
-3/+7
*
Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,
Hirokazu Yamamoto
2009-02-17
1
-0/+21
*
Issue #5292: Fixed mmap crash on its boundary access m[len(m)].
Hirokazu Yamamoto
2009-02-17
1
-0/+4
*
#2279 added the plain path case for data_files
Tarek Ziadé
2009-02-17
2
-7/+23
*
#2279: use os.sep so the MANIFEST file test work on win32
Tarek Ziadé
2009-02-16
1
-6/+6
*
Fixed #2279: distutils.sdist.add_defaults now add files listed in package_dat...
Tarek Ziadé
2009-02-16
3
-43/+129
*
Add GC support to count() objects. Backport candidate.
Raymond Hettinger
2009-02-16
1
-0/+5
*
Issue #5260: Various portability and standards compliance fixes, optimizations
Mark Dickinson
2009-02-15
1
-6/+6
*
#5179: don't leak PIPE fds when child execution fails.
Georg Brandl
2009-02-14
2
-0/+19
*
this needn't be a shebang line
Benjamin Peterson
2009-02-14
1
-1/+1
*
we're no longer using CVS, so this doesn't have to be binary
Benjamin Peterson
2009-02-14
1
-31/+30
*
Replace variable
Tarek Ziadé
2009-02-14
1
-1/+1
*
Fix for #5257: refactored all tests in distutils, so they use a temporary dir...
Tarek Ziadé
2009-02-14
7
-74/+64
*
Add keyword argument support to itertools.count().
Raymond Hettinger
2009-02-14
1
-0/+2
*
fix the environ for distutils test_util
Tarek Ziadé
2009-02-13
1
-1/+6
*
Fixed #4524: distutils build_script command failed with --with-suffix=3
Tarek Ziadé
2009-02-13
2
-2/+30
*
Issue #2461: added tests for distutils.util
Tarek Ziadé
2009-02-13
1
-0/+213
*
reverted leak fix, to use the one done in py3k branch (r67382)
Tarek Ziadé
2009-02-13
1
-2/+12
*
#3694: add test for fix committed in r66693.
Georg Brandl
2009-02-13
1
-0/+4
*
- Issue #3745: Fix hashlib to always reject unicode and non buffer-api
Gregory P. Smith
2009-02-13
1
-3/+18
*
fixing the leak introduced in r69304
Tarek Ziadé
2009-02-12
1
-2/+2
*
One more test.
Raymond Hettinger
2009-02-12
1
-0/+3
*
Add an extra testcase.
Raymond Hettinger
2009-02-12
1
-0/+3
*
Issue 5032: added a step argument to itertools.count() and allowed non-integ...
Raymond Hettinger
2009-02-12
1
-1/+36
*
no need for this __bases__ trick anymore
Benjamin Peterson
2009-02-12
1
-1/+1
*
Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even
Gregory P. Smith
2009-02-11
1
-0/+8
*
Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for
Mark Dickinson
2009-02-10
1
-2/+2
*
Fixed #3386: the optional prefix argument was ignored under OS2 and NT in dis...
Tarek Ziadé
2009-02-10
2
-3/+5
*
compileall used the ctime of bytecode and source to determine if the bytecode
Brett Cannon
2009-02-10
2
-7/+78
*
Issue 1818: collections.namedtuple() to support automatic renaming of invalid...
Raymond Hettinger
2009-02-10
2
-2/+23
[prev]
[next]