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
*
Remove *.egg-info from Makefile.pre.in (follow-up to d615eb7bce33, #12218)
Éric Araujo
2011-06-10
1
-1/+1
*
Packaging: use repr to display projects name (3ebabfbf6fe3 followup)
Éric Araujo
2011-06-10
1
-1/+1
*
Merge doc fixes from 3.2
Éric Araujo
2011-06-09
8
-19/+33
|
\
|
*
Branch merge
Éric Araujo
2011-06-09
8
-19/+33
|
|
\
|
|
*
Fix a few misuses of :option: I missed in r86521.
Éric Araujo
2011-06-08
3
-5/+5
|
|
*
Add links from builtins module docs to built-in functions and constants docs
Éric Araujo
2011-06-08
2
-1/+5
|
|
*
Add examples that work on Windows to distutils docs (#1626300)
Éric Araujo
2011-06-07
2
-8/+17
|
|
*
Remove outdated bit of advice (584f9c213a6d follow-up)
Éric Araujo
2011-06-07
1
-5/+6
*
|
|
The change done for #10645 deserves a NEWS entry
Éric Araujo
2011-06-09
1
-0/+3
*
|
|
Branch merge
Éric Araujo
2011-06-09
17
-83/+108
|
\
\
\
|
*
|
|
Stop creating a Python-X.Y.Z-pyX.Y.egg-info file on install (#10645)
Éric Araujo
2011-06-09
1
-0/+7
|
*
|
|
Document how to define extension modules in setup.cfg
Éric Araujo
2011-06-09
2
-2/+36
|
*
|
|
Fix incorrect nesting of sections in setup.cfg specification
Éric Araujo
2011-06-09
1
-18/+18
|
*
|
|
Fix example in packaging test_config.
Éric Araujo
2011-06-09
1
-2/+2
|
*
|
|
Style change in packaging: use “not in” over “not x in”.
Éric Araujo
2011-06-08
5
-16/+16
|
*
|
|
Packaging: always use repr to display project names.
Éric Araujo
2011-06-08
1
-7/+8
|
*
|
|
Fix misunderstanding of how booleans work
Éric Araujo
2011-06-08
1
-1/+2
|
*
|
|
Packaging cleanup: normalize print calls.
Éric Araujo
2011-06-08
4
-17/+19
|
*
|
|
Packaging cleanup: remove use of script_name where obsolete
Éric Araujo
2011-06-08
6
-20/+0
*
|
|
|
Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat.
Brian Curtin
2011-06-08
3
-0/+53
|
\
\
\
\
|
|
|
/
/
|
|
/
|
|
|
*
|
|
Fix #11583. Changed os.path.isdir to use GetFileAttributes instead of os.stat.
Brian Curtin
2011-06-08
3
-0/+53
|
|
|
/
|
|
/
|
*
|
|
Issue #12021: Make mmap's read() method argument optional. Patch by Petri
Charles-François Natali
2011-06-08
5
-6/+65
*
|
|
Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed
Antoine Pitrou
2011-06-08
8
-107/+587
*
|
|
Revert a reversed comparison order introduced in r70695.
Brett Cannon
2011-06-08
1
-1/+1
|
|
/
|
/
|
*
|
Kill dead code in importlib.test.__main__ (#12019, reviewed by Brett Cannon)
Éric Araujo
2011-06-07
1
-6/+1
*
|
Branch merge: packaging fixes
Éric Araujo
2011-06-07
6
-88/+107
|
\
\
|
*
|
Fix UnboundLocalError in a finally block of one packaging test
Éric Araujo
2011-06-06
1
-1/+1
|
*
|
Fix sdist to always include setup.cfg (#11092), to comply with the spec
Éric Araujo
2011-06-06
3
-19/+32
|
*
|
Use strings instead of sets of lines in packaging.create tests.
Éric Araujo
2011-06-06
1
-57/+63
|
*
|
Fix comment
Éric Araujo
2011-06-06
1
-1/+1
|
*
|
Update comments in sysconfig.cfg
Éric Araujo
2011-06-06
1
-7/+7
|
*
|
Fix documentation of requires-python field in setup.cfg (#11041)
Éric Araujo
2011-06-06
1
-3/+3
*
|
|
#12274: use proper escaping for % in IDLE config (merged from 3.2).
Łukasz Langa
2011-06-07
1
-2/+2
|
\
\
\
|
|
|
/
|
|
/
|
|
*
|
#12274: use proper escaping for % in IDLE config.
Łukasz Langa
2011-06-07
1
-2/+2
*
|
|
(Merge 3.2) test.support: don't catch OSError when can_symlink() removes the
Victor Stinner
2011-06-07
1
-1/+2
|
\
\
\
|
|
/
/
|
*
|
test.support: can_symlink() removes the temporary symbolic link
Victor Stinner
2011-06-07
1
-1/+4
*
|
|
Remove a redundant assignment.
Brett Cannon
2011-06-07
1
-1/+1
*
|
|
Checking if an unsigned long is < 0 is pointless.
Brett Cannon
2011-06-07
1
-3/+3
*
|
|
Remove some extraneous parentheses and swap the comparison order to
Brett Cannon
2011-06-07
1
-1/+1
*
|
|
When building sqlite3, the directory where sqlite.h was found was
Brett Cannon
2011-06-07
2
-2/+10
*
|
|
Use a sleep for test_subprocess timeout test
Victor Stinner
2011-06-06
1
-2/+3
*
|
|
Issue #12196: Make os.pipe2() flags argument mandatory.
Charles-François Natali
2011-06-06
3
-13/+14
*
|
|
Whitespace normalization
Antoine Pitrou
2011-06-06
1
-1/+0
*
|
|
Issue #12040: Expose a new attribute `sentinel` on instances of
Antoine Pitrou
2011-06-06
6
-14/+108
*
|
|
Issue #11893: Remove obsolete internal wrapper class `SSLFakeFile` in the smt...
Antoine Pitrou
2011-06-06
2
-23/+6
|
|
/
|
/
|
*
|
Merge 3.2
Éric Araujo
2011-06-06
0
-0/+0
|
\
\
|
|
/
|
*
Branch merge
Éric Araujo
2011-06-06
6
-16/+16
|
|
\
*
|
\
Branch merge
Éric Araujo
2011-06-06
15
-87/+260
|
\
\
\
|
*
|
|
Rephrase the section about spec versioning
Éric Araujo
2011-06-06
1
-20/+19
|
*
|
|
Fix a few typos
Éric Araujo
2011-06-06
1
-3/+3
[next]