2638 Commits (f0ccbbbc577f686ae5b4ab28a8e61bb524433d2d)

Author SHA1 Message Date
Victor Stinner f0ccbbbc57 Emit METH_FASTCALL code in Argument Clinic 9 years ago
Victor Stinner a9efb2f56e Add METH_FASTCALL calling convention 9 years ago
Benjamin Peterson feb7edc153 dummy dtrace probes are a good place to use inline functions 9 years ago
Benjamin Peterson dec2df3df3 fix dummy macro 9 years ago
Łukasz Langa a785c87d6e DTrace support: function calls, GC activity, line execution 9 years ago
Benjamin Peterson 4fd64b9a6a remove ceval timestamp support 9 years ago
Brett Cannon a721abac29 Issue #26331: Implement the parsing part of PEP 515. 9 years ago
Victor Stinner ae8b69c410 Issue #27810: Add _PyCFunction_FastCallKeywords() 9 years ago
Victor Stinner d873572095 Add _PyObject_FastCallKeywords() 9 years ago
Victor Stinner f9b760f48a Rework CALL_FUNCTION* opcodes 9 years ago
Yury Selivanov 52c4e7cc84 Issue #28008: Implement PEP 530 -- asynchronous comprehensions. 9 years ago
Yury Selivanov eb6364557f Issue #28003: Implement PEP 525 -- Asynchronous Generators. 9 years ago
Yury Selivanov f8cb8a16a3 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. 9 years ago
Eric Snow 4f29e75289 Issue #24254: Drop cls.__definition_order__. 9 years ago
Martin Panter 0be894b2f6 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). 9 years ago
Steve Dower 3929499914 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) 9 years ago
Victor Stinner 3b6a6b4215 Add a new private version to the builtin dict type 9 years ago
Victor Stinner a4348cc1be Add documentation to the dict implementation 9 years ago
Benjamin Peterson a13e367778 simplify Py_UCSN definitions with stdint types 9 years ago
Steve Dower 940f33a50f Issue #23524: Finish removing _PyVerify_fd from sources 9 years ago
Steve Dower cc16be85c0 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) 9 years ago
Victor Stinner 98ee9d5b73 Add Py_MEMBER_SIZE macro 9 years ago
Victor Stinner 742da040db Implement compact dict 9 years ago
Benjamin Peterson 47ff0734b8 more PY_LONG_LONG to long long 9 years ago
Eric Snow 46f97b85a8 Issue #15767: Use ModuleNotFoundError. 9 years ago
Eric Snow c943265ba5 Issue #15767: Add ModuleNotFoundError. 9 years ago
Brett Cannon d0600ed524 Make PyCodeObject.co_extra even more private to force users through the proper API. 9 years ago
Brett Cannon 5c4de2863b Add the co_extra field and accompanying APIs to code objects. 9 years ago
Benjamin Peterson 5223f08e78 make _Py_static_string_init use a designated initializer 9 years ago
Benjamin Peterson 2f8bfef158 replace PY_SIZE_MAX with SIZE_MAX 9 years ago
Steve Dower f5aba58480 Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec lookup 9 years ago
Victor Stinner e66987e626 os.urandom() now blocks on Linux 9 years ago
Benjamin Peterson ca47063998 replace Py_(u)intptr_t with the c99 standard types 9 years ago
Benjamin Peterson b9d9eeda2a require uintptr_t to exist 9 years ago
Benjamin Peterson 9b3d77052f replace Python aliases for standard integer types with the standard integer types (#17884) 9 years ago
Benjamin Peterson 88bd3edb3e only include inttypes.h (#17884) 9 years ago
Serhiy Storchaka ea525a2d1a Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation. 9 years ago
Benjamin Peterson 4fe55106d1 require standard int types to be defined (#17884) 9 years ago
Benjamin Peterson af580dff4a replace PY_LONG_LONG with long long 9 years ago
Benjamin Peterson ed4aa83ff7 require a long long data type (closes #27961) 9 years ago
Brett Cannon 3cebf93872 Implement the frame evaluation API aspect of PEP 523. 9 years ago
Eric Snow 92a6c170e6 Issue #24254: Preserve class attribute definition order. 9 years ago
Mark Dickinson 7c4e409d07 Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens. 9 years ago
Raymond Hettinger 15f44ab043 Issue #27895: Spelling fixes (Contributed by Ville Skyttä). 9 years ago
Victor Stinner e90bdb19f2 Issue #27830: Revert, remove _PyFunction_FastCallKeywords() 9 years ago
Victor Stinner 3f1057a4b6 method_call() and slot_tp_new() now uses fast call 9 years ago
Victor Stinner 577e1f8cb4 Add _PyObject_FastCallKeywords() 9 years ago
Victor Stinner 74319ae219 Use Py_ssize_t type for number of arguments 9 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