5157 Commits (f0acae2d3cd5bd6eca700223772e497fa613a776)

Author SHA1 Message Date
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
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
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 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
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
Victor Stinner 3a84097291 Add _PyErr_CreateException() 10 years ago
Victor Stinner 463b86a881 Issue #27809: Use _PyObject_FastCallDict() 10 years ago
Victor Stinner 155ea65e5c PyEval_CallObjectWithKeywords() uses fast call with kwargs 10 years ago
Victor Stinner 2990fa11bc Issue #27809: Use _PyObject_FastCallDict() 10 years ago
Victor Stinner 6fea7f7ffc Issue #27809: Cleanup _PyEval_EvalCodeWithName() 10 years ago
Victor Stinner b900939186 _PyFunction_FastCallDict() supports keyword args 10 years ago
Victor Stinner 559bb6a713 Rename _PyObject_FastCall() to _PyObject_FastCallDict() 10 years ago
Berker Peksag 4b7b565c58 Issue #27587: Move null pointer check earlier in _PyState_AddModule() 10 years ago
Victor Stinner 2eedc119c2 Optimize call to Python function without argument 10 years ago
Victor Stinner a88b2f4e5e Fix reference leak in tb_printinternal() 10 years ago
Victor Stinner c3ccaae6f3 sys_pyfile_write_unicode() now uses fast call 10 years ago
Victor Stinner 78da82bf3e call_trampoline() now uses fast call 10 years ago
Victor Stinner 71cb64acc2 PyErr_PrintEx() now uses fast call 10 years ago
Victor Stinner df142fdc4b import_name() now uses fast call 10 years ago