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
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
mangle keyword-only argname when loading defaults (closes #14607)
Benjamin Peterson
2012-04-17
1
-1/+5
*
move outside WITH_THREAD conditional
Benjamin Peterson
2012-04-13
1
-2/+2
*
take linkage def outside of WITH_THREAD conditional (closes #14569)
Benjamin Peterson
2012-04-13
1
-4/+3
*
fix parse_syntax_error to clean up its resources
Benjamin Peterson
2012-04-03
1
-20/+31
*
Fix typo when "PyObject*" was changed to "identifier"
Kristján Valur Jónsson
2012-03-23
1
-1/+1
*
this should technicaly be identifier
Benjamin Peterson
2012-03-22
1
-1/+1
*
check for NULL
Benjamin Peterson
2012-03-22
1
-1/+2
*
check by equality for __future__ not identity (closes #14378)
Benjamin Peterson
2012-03-22
1
-8/+2
*
Fixes Issue #14331: Use significantly less stack space when importing modules by
Gregory P. Smith
2012-03-18
1
-39/+127
*
Issue #14184: Increase the default stack size for secondary threads on
Ned Deily
2012-03-13
1
-8/+12
*
kill this disabled code
Benjamin Peterson
2012-03-12
1
-6/+0
*
use correct naming convention
Benjamin Peterson
2012-03-12
1
-2/+2
*
Issue #14177: marshal.loads() now raises TypeError when given an unicode string.
Antoine Pitrou
2012-03-03
1
-4/+4
*
Issue #14172: Fix reference leak when marshalling a buffer-like object (other...
Antoine Pitrou
2012-03-02
1
-4/+4
*
Issue #14084: Fix a file descriptor leak when importing a module with a bad e...
Antoine Pitrou
2012-02-22
1
-1/+3
*
In find_module(), do not silence fileno() and dup() errors.
Antoine Pitrou
2012-02-22
1
-0/+2
*
Fix test failure in test_cmd_line by initializing the hash secret at the earl...
Antoine Pitrou
2012-02-21
2
-2/+10
*
merge 3.2
Benjamin Peterson
2012-02-21
1
-4/+8
|
\
|
*
ensure no one tries to hash things before the random seed is found
Benjamin Peterson
2012-02-21
1
-4/+8
|
*
Fix typo in conditional.
Georg Brandl
2012-02-20
1
-1/+1
*
|
Fix typo in conditional.
Georg Brandl
2012-02-20
1
-1/+1
*
|
Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...
Georg Brandl
2012-02-20
3
-2/+314
|
\
\
|
|
/
|
*
Issue #13703: add a way to randomize the hash values of basic types (str, byt...
Georg Brandl
2012-02-20
3
-2/+314
*
|
Document absoluteness of sys.executable
Petri Lehtinen
2012-02-02
1
-1/+1
*
|
Port import fixes from 2.7.
Antoine Pitrou
2012-01-25
1
-10/+10
*
|
Issue #11235: Fix OverflowError when trying to import a source file whose mod...
Antoine Pitrou
2012-01-24
1
-7/+4
*
|
Issue #13722: Avoid silencing ImportErrors when initializing the codecs regis...
Antoine Pitrou
2012-01-18
1
-9/+0
*
|
Fix the builtin module initialization code to store the init function for fut...
Antoine Pitrou
2012-01-18
1
-0/+4
*
|
Fix a memory leak when initializing the standard I/O streams.
Antoine Pitrou
2012-01-18
1
-1/+2
*
|
Issue #13629: Renumber the tokens in token.h to match the _PyParser_TokenName...
Meador Inge
2012-01-16
1
-15/+15
*
|
fold into one if statement
Benjamin Peterson
2012-01-12
1
-3/+1
*
|
fix formatting
Benjamin Peterson
2012-01-03
1
-1/+1
*
|
add another year to glorious PSF IP
Benjamin Peterson
2012-01-01
1
-1/+1
*
|
Remove obsolete py3k comment.
Florent Xicluna
2011-12-09
1
-1/+0
*
|
Issue #7111: Python can now be run without a stdin, stdout or stderr stream.
Antoine Pitrou
2011-11-28
1
-15/+16
*
|
Issue #13444: When stdout has been closed explicitly, we should not attempt t...
Antoine Pitrou
2011-11-26
1
-2/+18
*
|
Issue #13436: commit regenerated Python-ast.c
Amaury Forgeot d'Arc
2011-11-22
1
-5/+1
*
|
Issue #13156: _PyGILState_Reinit(): Re-associate the auto thread state with the
Charles-François Natali
2011-11-22
1
-4/+5
*
|
Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
Antoine Pitrou
2011-11-05
1
-42/+41
*
|
Issue #13343: Fix a SystemError when a lambda expression uses a global
Amaury Forgeot d'Arc
2011-11-04
1
-0/+3
*
|
Add signatures to the docstring of functions added to imp by PEP 3147
Éric Araujo
2011-11-03
1
-2/+4
*
|
Issue #10363: Deallocate global locks in Py_Finalize().
Antoine Pitrou
2011-10-30
2
-10/+21
*
|
Remove unused variable.
Florent Xicluna
2011-10-28
1
-2/+1
*
|
Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...
Nick Coghlan
2011-10-23
1
-2/+28
*
|
Issue #7732: Don't open a directory as a file anymore while importing a
Victor Stinner
2011-09-23
1
-1/+8
*
|
- Issue #13021: Missing decref on an error path. Thanks to Suman Saha for
Barry Warsaw
2011-09-20
1
-1/+3
*
|
Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner
2011-09-15
1
-4/+4
*
|
Remove unused variable if Python is build without threads
Victor Stinner
2011-09-01
1
-0/+2
*
|
accept bytes for the AST 'string' type
Benjamin Peterson
2011-09-01
1
-1/+1
*
|
Fix style in code added by edba722f3b02
Éric Araujo
2011-07-26
1
-3/+3
[next]