Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
2f2fee19ec63a09b184fbe09135ecb2f16a0e257
/
Python
2f2fee1
va_end() all va_copy()ed va_lists.
by Christian Heimes
· 9 years ago
0c21214
replace usage of Py_VA_COPY with the (C99) standard va_copy
by Benjamin Peterson
· 9 years ago
75024c6
(Merge 3.5) Catch EPERM error in py_getrandom()
by Victor Stinner
· 9 years ago
6d8bc46
Catch EPERM error in py_getrandom()
by Victor Stinner
· 9 years ago
af59732
Cleanup random.c
by Victor Stinner
· 9 years ago
286987b
delete dead code
by Benjamin Peterson
· 9 years ago
74f4af7
Issue #27932: Prevent memory leak in win32_ver().
by Steve Dower
· 9 years ago
1ec262b
Issue #27932: Prevent memory leak in win32_ver().
by Steve Dower
· 9 years ago
8987c9d
Issue #26182: Raise DeprecationWarning for improper use of async/await keywords
by Yury Selivanov
· 9 years ago
995026a
merge 3.5 (#28119)
by Benjamin Peterson
· 9 years ago
59e5e0d
improve type-safe of and prevent double-frees in get_locale_info (#28119)
by Benjamin Peterson
· 9 years ago
f051e43
Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly optimize memcpy().
by Christian Heimes
· 9 years ago
57f91ac
Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()
by Victor Stinner
· 9 years ago
eece222
Issue #27213: Fix reference leaks
by Victor Stinner
· 9 years ago
09835dc
Make an f-string error message more exact and consistent.
by Eric V. Smith
· 9 years ago
b728105
Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.
by Serhiy Storchaka
· 9 years ago
015d874
Issue #28076: Variable annotations should be mangled for private names.
by Guido van Rossum
· 9 years ago
a1e9ab3
Fixed refactoring bug in dd046963bd42 (issue27129).
by Serhiy Storchaka
· 9 years ago
ab87400
Issue #27129: Replaced wordcode related magic constants with macros.
by Serhiy Storchaka
· 9 years ago
944368e
Issue #23722: Initialize __class__ from type.__new__()
by Nick Coghlan
· 9 years ago
4eef505
Backed out changeset 3934e070c9db
by Benjamin Peterson
· 9 years ago
54de2b1
Fix check_force_ascii()
by Victor Stinner
· 9 years ago
fef7e94
Don't run garbage collection on interpreter exit if it was explicitly disabled
by Łukasz Langa
· 9 years ago
c7454ff
Issue #27810: Fix getargs.c compilation on Windows
by Victor Stinner
· 9 years ago
819a46f
fix export of size_t parse stack function
by Benjamin Peterson
· 9 years ago
37e4ef7
Issue #27810: Rerun Argument Clinic on all modules
by Victor Stinner
· 9 years ago
f0ccbbb
Emit METH_FASTCALL code in Argument Clinic
by Victor Stinner
· 9 years ago
a9efb2f
Add METH_FASTCALL calling convention
by Victor Stinner
· 9 years ago
eb0dfa9
make invalid_comma_and_underscore a real prototype
by Benjamin Peterson
· 9 years ago
89e1b1a
Issue 27080: PEP 515: add '_' formatting option.
by Eric V. Smith
· 9 years ago
f578195
add dtrace inline stubs
by Benjamin Peterson
· 9 years ago
4ba5c88
just start with an int rather than casting
by Benjamin Peterson
· 9 years ago
451d0e3
Issue 27948: Allow backslashes in the literal string portion of f-strings, but not in the expressions. Also, require expressions to begin and end with literal curly braces.
by Eric V. Smith
· 9 years ago
a785c87
DTrace support: function calls, GC activity, line execution
by Łukasz Langa
· 9 years ago
75f94a7
remove more READ_TIMESTAMP
by Benjamin Peterson
· 9 years ago
1cfe1d1
remove READ_TIMESTAMP macro
by Benjamin Peterson
· 9 years ago
4fd64b9
remove ceval timestamp support
by Benjamin Peterson
· 9 years ago
a721aba
Issue #26331: Implement the parsing part of PEP 515.
by Brett Cannon
· 9 years ago
ae8b69c
Issue #27810: Add _PyCFunction_FastCallKeywords()
by Victor Stinner
· 9 years ago
50fd898
Issue #24320: Drop an old setuptools-induced hack.
by Eric Snow
· 9 years ago
d873572
Add _PyObject_FastCallKeywords()
by Victor Stinner
· 9 years ago
f9b760f
Rework CALL_FUNCTION* opcodes
by Victor Stinner
· 9 years ago
52c4e7c
Issue #28008: Implement PEP 530 -- asynchronous comprehensions.
by Yury Selivanov
· 9 years ago
6cff874
Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal.
by Guido van Rossum
· 9 years ago
87672d7
Issue #28003: Fix a compiler warning
by Yury Selivanov
· 9 years ago
50c584f
ceval: tighten the code of STORE_ANNOTATION
by Yury Selivanov
· 9 years ago
eb63645
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
by Yury Selivanov
· 9 years ago
f8cb8a1
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
by Yury Selivanov
· 9 years ago
a78b627
Fix potential NULL pointer dereference in _imp_create_builtin
by Christian Heimes
· 9 years ago
4f29e75
Issue #24254: Drop cls.__definition_order__.
by Eric Snow
· 9 years ago
45af0c8
Fix potential NULL pointer dereference in update_symbols()
by Christian Heimes
· 9 years ago
4c483ad
Merge
by Raymond Hettinger
· 9 years ago
262b679
Issue #26020: Fix evaluation order for set literals
by Raymond Hettinger
· 9 years ago
0be894b
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Martin Panter
· 9 years ago
32d3742
[backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder".
by Senthil Kumaran
· 9 years ago
f0f1c23
Issue 27936: Fix inconsistent round() behavior between float and int
by Raymond Hettinger
· 9 years ago
f0afe77
Issue #27909: Fix INCREF for possible NULL value
by Raymond Hettinger
· 9 years ago
3929499
Issue #1602: Windows console doesn't input or print Unicode (PEP 528)
by Steve Dower
· 9 years ago
940f33a
Issue #23524: Finish removing _PyVerify_fd from sources
by Steve Dower
· 9 years ago
f3fd06a
Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing.
by Eric Snow
· 9 years ago
cc16be8
Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)
by Steve Dower
· 9 years ago
035a100
Issue #26667: Add path-like object support to importlib.util.
by Brett Cannon
· 9 years ago
52794db
Issue #27911: Remove some unnecessary error checks in import.c.
by Brett Cannon
· 9 years ago
46f97b8
Issue #15767: Use ModuleNotFoundError.
by Eric Snow
· 9 years ago
5c4de28
Add the co_extra field and accompanying APIs to code objects.
by Brett Cannon
· 9 years ago
2f8bfef
replace PY_SIZE_MAX with SIZE_MAX
by Benjamin Peterson
· 9 years ago
e66987e
os.urandom() now blocks on Linux
by Victor Stinner
· 9 years ago
eaecc69
Issue #27974: Remove importlib._bootstrap._ManageReload.
by Brett Cannon
· 9 years ago
ca47063
replace Py_(u)intptr_t with the c99 standard types
by Benjamin Peterson
· 9 years ago
9b3d770
replace Python aliases for standard integer types with the standard integer types (#17884)
by Benjamin Peterson
· 9 years ago
5d75f44
dtoa.c: remove code for platforms with 64-bit integers (#17884)
by Benjamin Peterson
· 9 years ago
ea525a2
Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.
by Serhiy Storchaka
· 9 years ago
4fe5510
require standard int types to be defined (#17884)
by Benjamin Peterson
· 9 years ago
af580df
replace PY_LONG_LONG with long long
by Benjamin Peterson
· 9 years ago
3466bde
Avoid calling functions with an empty string as format string
by Victor Stinner
· 9 years ago
ad8c83a
Avoid inefficient way to call functions without argument
by Victor Stinner
· 9 years ago
ed4aa83
require a long long data type (closes #27961)
by Benjamin Peterson
· 9 years ago
3cebf93
Implement the frame evaluation API aspect of PEP 523.
by Brett Cannon
· 9 years ago
10108a7
Issue #27355: Removed support for Windows CE. It was never finished,
by Larry Hastings
· 9 years ago
92a6c17
Issue #24254: Preserve class attribute definition order.
by Eric Snow
· 9 years ago
6a4efce
Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a temporary restriction. In 3.6 beta 2, the plan is to again allow backslashes in the string parts of f-strings, but disallow them in the expression parts.
by Eric V. Smith
· 9 years ago
3b09cd6
Merge
by Raymond Hettinger
· 9 years ago
74942c9
Merge
by Raymond Hettinger
· 9 years ago
15f44ab
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
by Raymond Hettinger
· 9 years ago
1f93261
Issue #27818: Speed up parsing width and precision in format() strings for
by Serhiy Storchaka
· 9 years ago
f74c33a
Merge
by Raymond Hettinger
· 9 years ago
7ea386e
Issue 19504: Change "customise" to "customize" American spelling.
by Raymond Hettinger
· 9 years ago
e90bdb1
Issue #27830: Revert, remove _PyFunction_FastCallKeywords()
by Victor Stinner
· 9 years ago
577e1f8
Add _PyObject_FastCallKeywords()
by Victor Stinner
· 9 years ago
74319ae
Use Py_ssize_t type for number of arguments
by Victor Stinner
· 9 years ago
cdb5cee
Issue #27809: map_next() uses fast call
by Victor Stinner
· 9 years ago
f0cba67
Backed out changeset 70f88b097f60 (map_next)
by Victor Stinner
· 9 years ago
a9ba1ab
Issue #27809: map_next() uses fast call
by Victor Stinner
· 9 years ago
d1c2a8e
Issue #27809: builtin___build_class__() uses fast call
by Victor Stinner
· 9 years ago
6e2333d
PyEval_CallObjectWithKeywords() doesn't inc/decref
by Victor Stinner
· 9 years ago
f45a561
Issue #27809: PyErr_SetImportError() uses fast call
by Victor Stinner
· 9 years ago
3a84097
Add _PyErr_CreateException()
by Victor Stinner
· 9 years ago
463b86a
Issue #27809: Use _PyObject_FastCallDict()
by Victor Stinner
· 9 years ago
155ea65
PyEval_CallObjectWithKeywords() uses fast call with kwargs
by Victor Stinner
· 9 years ago
2990fa1
Issue #27809: Use _PyObject_FastCallDict()
by Victor Stinner
· 9 years ago
Next »