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
*
fs_unicode_converter is no longer used.
Serhiy Storchaka
2016-04-14
1
-8/+0
*
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
Serhiy Storchaka
2016-04-13
2
-21/+10
*
Merge 3.5 (os.urandom)
Victor Stinner
2016-04-12
1
-5/+12
|
\
|
*
Fix os.urandom() on Solaris 11.3
Victor Stinner
2016-04-12
1
-5/+12
*
|
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
3
-5/+5
|
\
\
|
|
/
|
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
3
-5/+5
*
|
Issue #25339: PYTHONIOENCODING now has priority over locale in setting the
Serhiy Storchaka
2016-04-10
1
-10/+9
|
\
\
|
|
/
|
*
Issue #25339: PYTHONIOENCODING now has priority over locale in setting the
Serhiy Storchaka
2016-04-10
1
-10/+9
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
7
-11/+11
|
\
\
|
|
/
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
4
-7/+7
|
*
Use Py_uintptr_t for atomic pointers
Victor Stinner
2016-01-22
2
-27/+28
|
*
Py_FatalError: disable faulthandler earlier
Victor Stinner
2016-03-16
1
-5/+5
|
*
Fix Py_FatalError() if called without the GIL
Victor Stinner
2016-03-14
1
-34/+50
*
|
Minor code cleanup for PyArg_UnpackTuple.
Raymond Hettinger
2016-03-26
1
-9/+8
*
|
makeopcodetargets.py: we need to import Lib/opcode.py
Victor Stinner
2016-03-26
1
-1/+21
*
|
Modernize Python/makeopcodetargets.py
Victor Stinner
2016-03-25
1
-19/+11
*
|
Fix bug in __import__ during Python shutdown
Victor Stinner
2016-03-24
1
-439/+445
*
|
get_warnings_attr(): Fix coverity warning
Victor Stinner
2016-03-23
1
-4/+3
*
|
Rework _Py_DumpASCII() to make Coverity happy
Victor Stinner
2016-03-23
1
-8/+8
*
|
compiler.c: fix compiler warnings on Windows
Victor Stinner
2016-03-23
1
-7/+9
*
|
Issue #23848: Expose _Py_DumpHexadecimal()
Victor Stinner
2016-03-23
1
-8/+9
*
|
Cleanup hashtable.h
Victor Stinner
2016-03-23
1
-1/+1
*
|
Issue #26588:
Victor Stinner
2016-03-23
1
-1/+1
*
|
_warnings.warn_explicit(): try to import warnings
Victor Stinner
2016-03-22
1
-14/+36
*
|
Add a source parameter to warnings.warn()
Victor Stinner
2016-03-22
1
-5/+6
*
|
hashtable.h now supports keys of any size
Victor Stinner
2016-03-21
1
-5/+10
*
|
Ooops, revert changeset ea9efa06c137
Victor Stinner
2016-03-21
1
-7/+4
*
|
_tracemalloc: add domain to trace keys
Victor Stinner
2016-03-18
1
-4/+7
*
|
On ResourceWarning, log traceback where the object was allocated
Victor Stinner
2016-03-19
1
-29/+62
*
|
Add _showwarnmsg() and _formatwarnmsg() to warnings
Victor Stinner
2016-03-18
1
-25/+53
*
|
Py_FatalError: disable faulthandler earlier
Victor Stinner
2016-03-16
1
-5/+5
*
|
faulthandler now works in non-Python threads
Victor Stinner
2016-03-16
3
-17/+54
*
|
Fix compilation error of traceback.c on Windows
Victor Stinner
2016-03-16
1
-3/+3
*
|
regrtest: Fix module.__path__
Victor Stinner
2016-03-15
1
-931/+940
*
|
Enhance and rewrite traceback dump C functions
Victor Stinner
2016-03-15
1
-53/+56
*
|
Add more checks on the GIL
Victor Stinner
2016-03-14
3
-5/+40
*
|
Fix Py_FatalError() if called without the GIL
Victor Stinner
2016-03-14
1
-34/+50
*
|
Add PYTHONMALLOC env var
Victor Stinner
2016-03-14
2
-5/+10
*
|
Merge 3.5 (issue #25888)
Yury Selivanov
2016-03-02
1
-0/+15
|
\
\
|
|
/
|
*
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov
2016-03-02
1
-0/+15
*
|
Update assertion in compiler_addop_i()
Victor Stinner
2016-03-01
1
-4/+8
*
|
Issue #22836: Merge exception reporting from 3.5
Martin Panter
2016-02-28
2
-5/+19
|
\
\
|
|
/
|
*
Issue #22836: Keep exception reports sensible despite errors
Martin Panter
2016-02-28
2
-5/+19
*
|
compile.c: inline compiler_use_new_block()
Victor Stinner
2016-02-27
1
-26/+9
*
|
remove unused c_encoding struct member
Benjamin Peterson
2016-02-26
1
-17/+4
*
|
rewrite parsestr() so it's comprehensible; remove dead code
Benjamin Peterson
2016-02-26
1
-24/+12
*
|
c_encoding can never be NULL, which allows some code simplification
Benjamin Peterson
2016-02-26
1
-47/+43
*
|
Merge for issue #26367
Brett Cannon
2016-02-20
1
-393/+398
|
\
\
|
|
/
|
*
Issue #26367: Have importlib.__init__() raise RuntimeError when
Brett Cannon
2016-02-20
1
-370/+371
*
|
Issue #25985: sys.version_info is now used instead of sys.version
Serhiy Storchaka
2016-02-11
1
-15/+16
[next]