5170 Commits (6cff8744a0ae58c88728df8bbca4580ffa6c6a86)

Author SHA1 Message Date
Guido van Rossum 6cff8744a0 Issue #27999: Make "global after use" a SyntaxError, and ditto for nonlocal. 10 years ago
Yury Selivanov 87672d777a Issue #28003: Fix a compiler warning 10 years ago
Yury Selivanov 50c584f50b ceval: tighten the code of STORE_ANNOTATION 10 years ago
Yury Selivanov eb6364557f Issue #28003: Implement PEP 525 -- Asynchronous Generators. 10 years ago
Yury Selivanov f8cb8a16a3 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. 10 years ago
Christian Heimes a78b627e2b Fix potential NULL pointer dereference in _imp_create_builtin 10 years ago
Eric Snow 4f29e75289 Issue #24254: Drop cls.__definition_order__. 10 years ago
Christian Heimes 45af0c83da Fix potential NULL pointer dereference in update_symbols() 10 years ago
Raymond Hettinger 4c483ad52b Merge 10 years ago
Raymond Hettinger 262b6793e0 Issue #26020: Fix evaluation order for set literals 10 years ago
Martin Panter 0be894b2f6 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). 10 years ago
Senthil Kumaran 32d374215a [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". 10 years ago
Raymond Hettinger f0f1c239e4 Issue 27936: Fix inconsistent round() behavior between float and int 10 years ago
Raymond Hettinger f0afe77c52 Issue #27909: Fix INCREF for possible NULL value 10 years ago
Steve Dower 3929499914 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) 10 years ago
Steve Dower 940f33a50f Issue #23524: Finish removing _PyVerify_fd from sources 10 years ago
Eric Snow f3fd06a2e4 Issue #28026: Raise ImportError when exec_module() exists but create_module() is missing. 10 years ago
Steve Dower cc16be85c0 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) 10 years ago
Brett Cannon 035a100382 Issue #26667: Add path-like object support to importlib.util. 10 years ago
Brett Cannon 52794db825 Issue #27911: Remove some unnecessary error checks in import.c. 10 years ago
Eric Snow 46f97b85a8 Issue #15767: Use ModuleNotFoundError. 10 years ago
Brett Cannon 5c4de2863b Add the co_extra field and accompanying APIs to code objects. 10 years ago
Benjamin Peterson 2f8bfef158 replace PY_SIZE_MAX with SIZE_MAX 10 years ago
Victor Stinner e66987e626 os.urandom() now blocks on Linux 10 years ago
Brett Cannon eaecc692df Issue #27974: Remove importlib._bootstrap._ManageReload. 10 years ago
Benjamin Peterson ca47063998 replace Py_(u)intptr_t with the c99 standard types 10 years ago
Benjamin Peterson 9b3d77052f replace Python aliases for standard integer types with the standard integer types (#17884) 10 years ago
Benjamin Peterson 5d75f441ef dtoa.c: remove code for platforms with 64-bit integers (#17884) 10 years ago
Serhiy Storchaka ea525a2d1a Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. 10 years ago
Benjamin Peterson 4fe55106d1 require standard int types to be defined (#17884) 10 years ago
Benjamin Peterson af580dff4a replace PY_LONG_LONG with long long 10 years ago
Victor Stinner 3466bde1cc Avoid calling functions with an empty string as format string 10 years ago
Victor Stinner ad8c83ad6b Avoid inefficient way to call functions without argument 10 years ago
Benjamin Peterson ed4aa83ff7 require a long long data type (closes #27961) 10 years ago
Brett Cannon 3cebf93872 Implement the frame evaluation API aspect of PEP 523. 10 years ago
Larry Hastings 10108a7b9a Issue #27355: Removed support for Windows CE. It was never finished, 10 years ago
Eric Snow 92a6c170e6 Issue #24254: Preserve class attribute definition order. 10 years ago
Eric V. Smith 6a4efce7a5 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. 10 years ago
Raymond Hettinger 15f44ab043 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). 10 years ago
Serhiy Storchaka 1f9326196e Issue #27818: Speed up parsing width and precision in format() strings for 10 years ago
Raymond Hettinger 7ea386e56e Issue 19504: Change "customise" to "customize" American spelling. 10 years ago
Victor Stinner e90bdb19f2 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() 10 years ago
Victor Stinner 577e1f8cb4 Add _PyObject_FastCallKeywords() 10 years ago
Victor Stinner 74319ae219 Use Py_ssize_t type for number of arguments 10 years ago
Victor Stinner cdb5cee980 Issue #27809: map_next() uses fast call 10 years ago
Victor Stinner f0cba67d0b Backed out changeset 70f88b097f60 (map_next) 10 years ago
Victor Stinner a9ba1ab21b Issue #27809: map_next() uses fast call 10 years ago
Victor Stinner d1c2a8e2b5 Issue #27809: builtin___build_class__() uses fast call 10 years ago
Victor Stinner 6e2333dfdf PyEval_CallObjectWithKeywords() doesn't inc/decref 10 years ago
Victor Stinner f45a56150b Issue #27809: PyErr_SetImportError() uses fast call 10 years ago