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
*
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
*
|
Issue #26312: SystemError is now raised in all programming bugs with using
Serhiy Storchaka
2016-02-11
1
-6/+6
*
|
Issue #25698: Prevent possible replacing imported module with the empty one
Serhiy Storchaka
2016-02-10
1
-2/+6
|
\
\
|
|
/
|
*
Issue #25698: Prevent possible replacing imported module with the empty one
Serhiy Storchaka
2016-02-10
1
-2/+6
*
|
compiler: don't emit SyntaxWarning on const stmt
Victor Stinner
2016-02-08
1
-22/+2
*
|
compiler now ignores constant statements
Victor Stinner
2016-02-08
1
-11/+30
*
|
Issue #26198: ValueError is now raised instead of TypeError on buffer
Serhiy Storchaka
2016-02-07
1
-2/+7
*
|
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka
2016-02-07
1
-12/+20
|
\
\
|
|
/
|
*
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka
2016-02-07
1
-12/+20
*
|
Switch to more idiomatic C code.
Eric V. Smith
2016-02-05
1
-3/+4
*
|
Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was bei...
Eric V. Smith
2016-02-05
1
-2/+2
*
|
Issue #4806: Merge * unpacking fix from 3.5
Martin Panter
2016-01-31
1
-8/+10
|
\
\
|
|
/
|
*
Issue #4806: Avoid masking original TypeError in call with * unpacking
Martin Panter
2016-01-31
1
-8/+10
|
*
code_richcompare() now uses the constants types
Victor Stinner
2016-01-22
1
-48/+10
*
|
Issue #26146: enhance ast.Constant error message
Victor Stinner
2016-01-26
1
-1/+3
*
|
Issue #26146: remove useless code
Victor Stinner
2016-01-26
1
-7/+0
*
|
Fix a refleak in validate_constant()
Victor Stinner
2016-01-26
1
-0/+2
*
|
Add ast.Constant
Victor Stinner
2016-01-25
5
-14/+181
*
|
Issue #26146: marshal.loads() now uses the empty frozenset singleton
Victor Stinner
2016-01-23
1
-29/+40
*
|
Issue #18018: Raise an ImportError if a relative import is attempted
Brett Cannon
2016-01-23
1
-3/+8
*
|
Issue #25791: Warn when __package__ != __spec__.parent.
Brett Cannon
2016-01-22
2
-93/+121
*
|
Use Py_uintptr_t for atomic pointers
Victor Stinner
2016-01-22
2
-27/+28
*
|
code_richcompare() now uses the constants types
Victor Stinner
2016-01-22
1
-48/+10
*
|
co_lnotab supports negative line number delta
Victor Stinner
2016-01-20
3
-135/+152
*
|
Merge 3.5
Victor Stinner
2016-01-20
3
-21/+22
|
\
\
|
|
/
|
*
Add _PyThreadState_UncheckedGet()
Victor Stinner
2016-01-20
3
-21/+22
*
|
Fix indentation of continuation lines.
Georg Brandl
2016-01-18
1
-1/+1
*
|
Fix two instances of wrong indentation.
Georg Brandl
2016-01-18
1
-2/+2
*
|
Issue #25791: Raise an ImportWarning when __spec__ or __package__ are
Brett Cannon
2016-01-15
2
-294/+329
[next]