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
*
imp.load_dynamic() uses PyUnicode_FSConverter() to support surrogates
Victor Stinner
2010-10-15
1
-6/+6
*
Use locale encoding if Py_FileSystemDefaultEncoding is not set
Victor Stinner
2010-10-15
1
-258/+0
*
redecode_filename(): don't need to initialize variables
Victor Stinner
2010-10-15
1
-1/+1
*
Mark _Py_char2wchar() input argument as constant
Victor Stinner
2010-10-15
1
-1/+1
*
Explicitly close some files (from issue #10093)
Antoine Pitrou
2010-10-14
1
-0/+6
*
_Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates
Victor Stinner
2010-10-14
1
-3/+11
*
Issue #9992: Remove PYTHONFSENCODING environment variable.
Victor Stinner
2010-10-13
1
-16/+6
*
ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)
Victor Stinner
2010-10-13
1
-0/+4
*
Issue #10062: Allow building on platforms which do not have sem_timedwait.
Antoine Pitrou
2010-10-10
1
-1/+2
*
fileutils.c: document which encodings are used
Victor Stinner
2010-10-07
1
-6/+26
*
_Py_wrealpath() requires the size of the output buffer
Victor Stinner
2010-10-07
2
-3/+4
*
_Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on Windows
Victor Stinner
2010-10-07
1
-18/+6
*
Fix fileutils for Windows
Victor Stinner
2010-10-07
1
-8/+7
*
Ooops, fileutils.c contains twice the same code
Victor Stinner
2010-10-07
1
-380/+0
*
Create fileutils.c/.h
Victor Stinner
2010-10-07
3
-93/+759
*
_wrealpath() and _Py_wreadlink() support surrogates (PEP 383)
Victor Stinner
2010-10-07
1
-3/+4
*
PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*
Victor Stinner
2010-10-07
1
-3/+3
*
Create a subfunction for PySys_SetArgvEx()
Victor Stinner
2010-10-06
1
-78/+94
*
#9060 Let platforms without dup2() compile the replacement fonction without e...
Amaury Forgeot d'Arc
2010-10-05
1
-0/+1
*
Remove an unreferenced variable. len is no longer needed.
Brian Curtin
2010-09-29
1
-1/+0
*
Issue #9630: Redecode filenames when setting the filesystem encoding
Victor Stinner
2010-09-29
1
-0/+258
*
Issue #9979: Use PyUnicode_AsWideCharString() in import.c
Victor Stinner
2010-09-29
1
-18/+16
*
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
[next]