Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
af8363926aa1cb96483a1777d478491e7415faff
/
Python
244e120
Use Py_uintptr_t for atomic pointers
by Victor Stinner
· 9 years ago
a2e5e04
Py_FatalError: disable faulthandler earlier
by Victor Stinner
· 9 years ago
4ddee7f
Fix Py_FatalError() if called without the GIL
by Victor Stinner
· 9 years ago
c724bae
coroutines: Error when awaiting on coroutine that's being awaited
by Yury Selivanov
· 9 years ago
3263f68
Issue #22836: Keep exception reports sensible despite errors
by Martin Panter
· 9 years ago
4f38cb4
Issue #26367: Have importlib.__init__() raise RuntimeError when
by Brett Cannon
· 9 years ago
48a583b
Issue #25698: Prevent possible replacing imported module with the empty one
by Serhiy Storchaka
· 9 years ago
c4b813d
Issue #26198: Fixed error messages for some argument parsing errors.
by Serhiy Storchaka
· 9 years ago
b594422
Issue #4806: Avoid masking original TypeError in call with * unpacking
by Martin Panter
· 9 years ago
3cdd5fb
code_richcompare() now uses the constants types
by Victor Stinner
· 9 years ago
bfd316e
Add _PyThreadState_UncheckedGet()
by Victor Stinner
· 9 years ago
4c70293
merge 3.4
by Benjamin Peterson
· 9 years ago
e8c2a95
merge 3.3
by Benjamin Peterson
· 9 years ago
75e3630
2016 will be another year of writing copyrighted code
by Benjamin Peterson
· 9 years ago
3cc8f4b
make recording and reporting errors and nonlocal and global directives more robust (closes #25973)
by Benjamin Peterson
· 9 years ago
191321d
Issue #20440: More use of Py_SETREF.
by Serhiy Storchaka
· 9 years ago
4a1e70f
Issue #20440: Applied yet one patch for using Py_SETREF.
by Serhiy Storchaka
· 9 years ago
5a57ade
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 9 years ago
225821c
Issue #25899: Converted non-ASCII characters in docstrings and manpage
by Serhiy Storchaka
· 9 years ago
6f9b010
Fix a couple of typos in code comments
by Martin Panter
· 9 years ago
c379ade
pytime.c: rename pygettimeofday_new() to pygettimeofday()
by Victor Stinner
· 9 years ago
eeb896c
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
by Martin Panter
· 9 years ago
f9827ea
Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when
by Victor Stinner
· 9 years ago
61d6e4a
Issue #24802: Merge null termination fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
60a1d3c
Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the
by Victor Stinner
· 9 years ago
2eb819f
Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
7462b649
Issue #25523: Correct "a" article to "an" article
by Martin Panter
· 9 years ago
50856d5
sys.setrecursionlimit() now raises RecursionError
by Victor Stinner
· 9 years ago
bc5b80b
Close #24784: Fix compilation without thread support
by Victor Stinner
· 9 years ago
e02f8fc
Issue #24402: Merge input() fix from 3.4 into 3.5
by Martin Panter
· 9 years ago
c9a6ab5
Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun
by Martin Panter
· 9 years ago
3f930dc
Merge typo fixes from 3.4 into 3.5
by Martin Panter
· 9 years ago
9955a37
Various minor typos in documentation and comments
by Martin Panter
· 9 years ago
0b40aab
Issue #25280: Import trace messages emitted in verbose (-v) mode are no
by Serhiy Storchaka
· 9 years ago
f731bc0
Issue #25280: Import trace messages emitted in verbose (-v) mode are no
by Serhiy Storchaka
· 9 years ago
861f067
Merge 3.4 (os.urandom)
by Victor Stinner
· 9 years ago
78cc2e8
Issue #25003: os.urandom() doesn't use getentropy() on Solaris because
by Victor Stinner
· 9 years ago
bae2d62
Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom()
by Victor Stinner
· 9 years ago
58b5395
make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131)
by Benjamin Peterson
· 9 years ago
ec26f83
Issue #25155: Fix _PyTime_Divide() rounding
by Victor Stinner
· 9 years ago
9a8b177
Issue #25155: Add _PyTime_AsTimevalTime_t() function
by Victor Stinner
· 9 years ago
cd6e694
Issue #25160: Fix import_init() comments and messages
by Victor Stinner
· 9 years ago
b685515
compute stack effect of BUILD_MAP correctly (closes #25060)
by Benjamin Peterson
· 9 years ago
f35bd30
Merge from 3.5.0 branch.
by Steve Dower
· 9 years ago
714e493
Issue #24305: Prevent import subsystem stack frames from being counted
by Larry Hastings
· 9 years ago
874dbe8
Merge 3.4 (create_stdio)
by Victor Stinner
· 9 years ago
6fb5bae
Fix race condition in create_stdio()
by Victor Stinner
· 9 years ago
38b8ae0
Issue #24993: Handle import error in namereplace error handler
by Victor Stinner
· 9 years ago
5ad5821
oops, rename pymonotonic_new() to pymonotonic()
by Victor Stinner
· 9 years ago
c3c616c
Issue #24707: Remove assertion in monotonic clock
by Victor Stinner
· 9 years ago
b3d5313
Issue #24975: Fix AST compilation for PEP 448 syntax.
by Yury Selivanov
· 9 years ago
01b1ff6
Rebuilt Clinic generated code.
by Larry Hastings
· 9 years ago
1df0b35
Issue #24769: Interpreter now starts properly when dynamic loading
by Larry Hastings
· 9 years ago
3008bc0
Issue #24492: make sure that ``from ... import ...` raises an
by Brett Cannon
· 9 years ago
0bd5fb0
Issue #24728: Fix building without threads.
by Berker Peksag
· 9 years ago
14acf5f
Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'.
by Yury Selivanov
· 9 years ago
61d5aab
py_getrandom(): getrandom() *can* return EINTR
by Victor Stinner
· 9 years ago
c0cbed1
Fix refleak.
by Stefan Krah
· 9 years ago
f315c1c
Issue #24687: Plug refleak on SyntaxError in function parameters annotations.
by Yury Selivanov
· 9 years ago
b7666a3
Issue #24619: More tests; fix nits in compiler.c
by Yury Selivanov
· 9 years ago
d5d77aa
set items in dict displays from left to right (closes #24569)
by Benjamin Peterson
· 9 years ago
f488fb4
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
by Yury Selivanov
· 9 years ago
9dec035
Issue #24528: Improve error message for awaits in comprehensions
by Yury Selivanov
· 9 years ago
5376ba9
Issue #24400: Introduce a distinct type for 'async def' coroutines.
by Yury Selivanov
· 9 years ago
289dd19
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
by Serhiy Storchaka
· 9 years ago
5fa22fc
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
by Serhiy Storchaka
· 9 years ago
ccfdf09
Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.
by Serhiy Storchaka
· 9 years ago
73c95f1
Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.
by Serhiy Storchaka
· 9 years ago
553e156
Fixed indentation of Python examples in C comments.
by Serhiy Storchaka
· 9 years ago
d741a88
Fixed indentation of Python examples in C comments.
by Serhiy Storchaka
· 9 years ago
94c2263
Issue 24374: Plug refleak in set_coroutine_wrapper
by Yury Selivanov
· 9 years ago
eb698fe
Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper
by Yury Selivanov
· 9 years ago
72ea27c
Issue 24366: Merge 3.4
by Yury Selivanov
· 9 years ago
e126857
Issue 24366: Merge 3.3
by Yury Selivanov
· 9 years ago
614bfcc
Issue 24366: Indent code (thanks to li4ick for reporting).
by Yury Selivanov
· 9 years ago
aab3c4a
Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully
by Yury Selivanov
· 9 years ago
d8cf382
Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private
by Yury Selivanov
· 9 years ago
ac5569b
Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
by Serhiy Storchaka
· 9 years ago
fa494fd
Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
by Serhiy Storchaka
· 9 years ago
8b2e8b6
Specify default values of semantic booleans in Argument Clinic generated signatures as booleans.
by Serhiy Storchaka
· 9 years ago
7e810a6
Use converter names instead of format units in Argument Clinic descriptions
by Serhiy Storchaka
· 9 years ago
e20056c
fix importing one char extension modules (closes #24328)
by Benjamin Peterson
· 9 years ago
264be6f
remove STORE_MAP, since it's unused
by Benjamin Peterson
· 9 years ago
ee85339
in dict displays, evaluate the key before the value (closes #11205)
by Benjamin Peterson
· 9 years ago
6ef0590
Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc.
by Yury Selivanov
· 9 years ago
55871f0
Issue #24285: fix importing extensions from packages
by Nick Coghlan
· 9 years ago
adc2fb8
Issue #24268: Fix import naming when loading extension modules. Patch by Petr Viktorin.
by Steve Dower
· 9 years ago
7689154
Issue #24268: Fixes generation of init import name on Windows.
by Steve Dower
· 9 years ago
d5cacbb
PEP 489: Multi-phase extension module initialization
by Nick Coghlan
· 9 years ago
c0937f7
Issue #24102: Fixed exception type checking in standard error handlers.
by Serhiy Storchaka
· 9 years ago
ca7fecb
Issue #24102: Fixed exception type checking in standard error handlers.
by Serhiy Storchaka
· 9 years ago
de12b79
allow test node after ** in calls (closes #24176)
by Benjamin Peterson
· 9 years ago
183a941
Issue #24192: Fix namespace package imports.
by Eric Snow
· 9 years ago
baaadbf
Issue 24017: fix for "async with" refcounting
by Nick Coghlan
· 9 years ago
baa2e56
use our normal bracing style
by Benjamin Peterson
· 9 years ago
1dde177
Issue #24017: Plug ref leak.
by Yury Selivanov
· 9 years ago
f487a00
Fix warnings for PyEval_GetCoroutineWrapper
by Yury Selivanov
· 9 years ago
7544508
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
by Yury Selivanov
· 9 years ago
8170e8c
PEP 479: Change StopIteration handling inside generators.
by Yury Selivanov
· 10 years ago
95283fb
Merge 3.4
by Benjamin Peterson
· 10 years ago
Next »