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
...
*
Since __import__ is not designed for general use, have its docstring point
Brett Cannon
2010-09-27
1
-2/+6
*
revert r85003, poorly considered; breaks tests
Benjamin Peterson
2010-09-25
1
-1/+1
*
don't count keyword arguments as positional #9943
Benjamin Peterson
2010-09-25
1
-1/+1
*
add column offset to all syntax errors
Benjamin Peterson
2010-09-20
4
-33/+56
*
add PyErr_SyntaxLocationEx, to support adding a column offset
Benjamin Peterson
2010-09-20
1
-1/+17
*
Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other
Antoine Pitrou
2010-09-20
1
-5/+8
*
issue 9786 Native TLS support for pthreads
Kristján Valur Jónsson
2010-09-20
3
-1/+49
*
PyImport_Import was using the old import hack of sticking a dummy value into
Brett Cannon
2010-09-19
1
-3/+13
*
Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly
Antoine Pitrou
2010-09-13
3
-4/+34
*
Fix incorrect comment regarding MAGIC and TAG in import.c
Nick Coghlan
2010-09-11
1
-2/+5
*
typo
Benjamin Peterson
2010-09-10
1
-2/+2
*
use Py_REFCNT
Benjamin Peterson
2010-09-10
1
-2/+2
*
remove gil_drop_request in --without-threads
Benjamin Peterson
2010-09-10
1
-4/+13
*
use DISPATCH() instead of continue
Benjamin Peterson
2010-09-10
1
-1/+1
*
Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODING
Victor Stinner
2010-09-10
2
-44/+0
*
bump magic number for DELETE_DEREF
Benjamin Peterson
2010-09-10
1
-1/+2
*
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc
2010-09-10
3
-24/+38
*
Fix Issue #9752: MSVC compiler warning due to undefined function
Daniel Stutzbach
2010-09-09
1
-4/+7
*
Issue #9804: ascii() now always represents unicode surrogate pairs as
Antoine Pitrou
2010-09-09
1
-6/+20
*
PEP 3149: Try to load the extension with the SOABI before trying
Matthias Klose
2010-09-08
1
-1/+1
*
Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
Antoine Pitrou
2010-09-08
1
-8/+7
*
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou
2010-09-04
4
-46/+17
*
_warnings exposed two variables with the name 'default_action' and
Brett Cannon
2010-09-04
1
-2/+2
*
PEP 3149 is accepted.
Barry Warsaw
2010-09-03
1
-6/+13
*
Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()
Antoine Pitrou
2010-09-01
1
-20/+0
*
only catch AttributeError in hasattr() #9666
Benjamin Peterson
2010-08-24
1
-8/+5
*
Issue 8403: Don't mask KeyboardInterrupt during peephole operation.
Raymond Hettinger
2010-08-22
1
-4/+8
*
Add tests for r84209 (crashes in the Ast builder)
Amaury Forgeot d'Arc
2010-08-19
1
-3/+3
*
Check the return values for all functions returning an ast node.
Amaury Forgeot d'Arc
2010-08-19
1
-26/+27
*
Issue #8622: Add PYTHONFSENCODING environment variable to override the
Victor Stinner
2010-08-18
1
-22/+43
*
Remove unused functions _PyImport_FindModule and _PyImport_IsScript
Victor Stinner
2010-08-17
1
-16/+0
*
Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().
Victor Stinner
2010-08-17
1
-5/+5
*
Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the mod...
Nick Coghlan
2010-08-17
1
-3/+7
*
Issue #9425: save/restore exception on filename encoding
Victor Stinner
2010-08-17
1
-1/+6
*
Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()
Victor Stinner
2010-08-16
1
-15/+67
*
Create _Py_fopen() for PyUnicodeObject path
Victor Stinner
2010-08-14
1
-0/+33
*
_Py_stat(): ensure that path ends with a nul character
Victor Stinner
2010-08-14
1
-2/+3
*
Issue #9425: Create private _Py_stat() function
Victor Stinner
2010-08-14
1
-0/+33
*
Issue #9203: Computed gotos are now enabled by default on supported
Antoine Pitrou
2010-08-13
1
-4/+17
*
Issue #9425: Create PyErr_WarnFormat() function
Victor Stinner
2010-08-13
1
-6/+40
*
Issue #9425: NullImporter constructor is fully unicode compliant
Victor Stinner
2010-08-13
1
-38/+52
*
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
Alexander Belopolsky
2010-08-11
2
-45/+5
*
Issue #8411: new condition variable emulation under Windows for the new GIL,
Antoine Pitrou
2010-08-10
1
-52/+105
*
Issue #9425: Create load_builtin() subfunction
Victor Stinner
2010-08-09
1
-30/+40
*
Issue #477863: Print a warning at shutdown if gc.garbage is not empty.
Antoine Pitrou
2010-08-08
1
-0/+3
*
Issue #9425: fix setup_context() for non-ascii filenames
Victor Stinner
2010-08-08
1
-13/+11
*
Issue #5319: Print an error if flushing stdout fails at interpreter
Antoine Pitrou
2010-08-08
1
-1/+1
*
Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C API
Alexander Belopolsky
2010-08-05
2
-0/+62
*
Remove trailing whitespace.
Georg Brandl
2010-07-31
1
-1/+1
*
Update copyright years and add releases to release list. Also update Sphinx ...
Georg Brandl
2010-07-31
1
-1/+1
[prev]
[next]