summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* Add _PyObject_FastCallKeywords()Victor Stinner2016-09-092-2/+26
| | | | | | | | | | Issue #27830: Add _PyObject_FastCallKeywords(): avoid the creation of a temporary dictionary for keyword arguments. Other changes: * Cleanup call_function() and fast_function() (ex: rename nk to nkwargs) * Remove now useless do_call(), replaced with _PyObject_FastCallKeywords()
* Rework CALL_FUNCTION* opcodesVictor Stinner2016-09-091-2/+1
| | | | | | | | | | | | | | | | | | | Issue #27213: Rework CALL_FUNCTION* opcodes to produce shorter and more efficient bytecode: * CALL_FUNCTION now only accepts position arguments * CALL_FUNCTION_KW accepts position arguments and keyword arguments, but keys of keyword arguments are packed into a constant tuple. * CALL_FUNCTION_EX is the most generic, it expects a tuple and a dict for positional and keyword arguments. CALL_FUNCTION_VAR and CALL_FUNCTION_VAR_KW opcodes have been removed. 2 tests of test_traceback are currently broken: skip test, the issue #28050 was created to track the issue. Patch by Demur Rumed, design by Serhiy Storchaka, reviewed by Serhiy Storchaka and Victor Stinner.
* Issue #28008: Implement PEP 530 -- asynchronous comprehensions.Yury Selivanov2016-09-091-2/+3
|
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-096-0/+41
|
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-094-73/+88
| | | | Patch by Ivan Levkivskyi.
* Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-082-6/+0
|
* Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-311-0/+4
| | | | Closes #17602: Adds a readline implementation for the Windows console
* Add a new private version to the builtin dict typeVictor Stinner2016-09-081-0/+4
| | | | | | | Issue #26058: Add a new private version to the builtin dict type, incremented at each dictionary creation and at each dictionary change. Implementation of the PEP 509.
* Add documentation to the dict implementationVictor Stinner2016-09-081-0/+9
| | | | Issue #27350.
* simplify Py_UCSN definitions with stdint typesBenjamin Peterson2016-09-081-15/+3
|
* Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-12/+0
|
* Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-082-6/+3
|
* Add Py_MEMBER_SIZE macroVictor Stinner2016-09-081-0/+3
| | | | | Issue #27350: use Py_MEMBER_SIZE() macro to get the size of PyDictKeyEntry.dk_indices, rather than hardcoding 8.
* Implement compact dictVictor Stinner2016-09-081-1/+0
| | | | | | | | | | | | Issue #27350: `dict` implementation is changed like PyPy. It is more compact and preserves insertion order. _PyDict_Dummy() function has been removed. Disable test_gdb: python-gdb.py is not updated yet to the new structure of compact dictionaries (issue #28023). Patch written by INADA Naoki.
* more PY_LONG_LONG to long longBenjamin Peterson2016-09-081-30/+0
|
* Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-071-0/+3
|
* Issue #15767: Add ModuleNotFoundError.Eric Snow2016-09-071-0/+1
|
* Make PyCodeObject.co_extra even more private to force users through the ↵Brett Cannon2016-09-071-10/+4
| | | | proper API.
* Add the co_extra field and accompanying APIs to code objects.Brett Cannon2016-09-073-1/+30
| | | | This completes PEP 523.
* make _Py_static_string_init use a designated initializerBenjamin Peterson2016-09-071-1/+1
|
* replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-9/+1
|
* Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ↵Steve Dower2016-09-071-1/+1
| | | | lookup
* os.urandom() now blocks on LinuxVictor Stinner2016-09-061-1/+2
| | | | | | | Issue #27776: The os.urandom() function does now block on Linux 3.17 and newer until the system urandom entropy pool is initialized to increase the security. This change is part of the PEP 524.
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-063-9/+9
|
* require uintptr_t to existBenjamin Peterson2016-09-061-21/+0
|
* replace Python aliases for standard integer types with the standard integer ↵Benjamin Peterson2016-09-063-19/+11
| | | | types (#17884)
* only include inttypes.h (#17884)Benjamin Peterson2016-09-061-3/+0
|
* Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.Serhiy Storchaka2016-09-062-0/+9
|
* require standard int types to be defined (#17884)Benjamin Peterson2016-09-062-55/+1
|
* replace PY_LONG_LONG with long longBenjamin Peterson2016-09-064-10/+10
|
* require a long long data type (closes #27961)Benjamin Peterson2016-09-064-26/+8
|
* Implement the frame evaluation API aspect of PEP 523.Brett Cannon2016-09-052-2/+8
|
* Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-052-0/+6
|
* Issue #11734: Add support for IEEE 754 half-precision floats to the struct ↵Mark Dickinson2016-09-031-4/+6
| | | | module. Original patch by Eli Stevens.
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-303-3/+3
|
* Issue #27830: Revert, remove _PyFunction_FastCallKeywords()Victor Stinner2016-08-252-23/+0
|
* method_call() and slot_tp_new() now uses fast callVictor Stinner2016-08-241-0/+4
| | | | | | | Issue #27841: Add _PyObject_Call_Prepend() helper function to prepend an argument to existing arguments to call a function. This helper uses fast calls. Modify method_call() and slot_tp_new() to use _PyObject_Call_Prepend().
* Add _PyObject_FastCallKeywords()Victor Stinner2016-08-242-0/+23
| | | | | | Issue #27830: Similar to _PyObject_FastCallDict(), but keyword arguments are also passed in the same C array than positional arguments, rather than being passed as a Python dict.
* Use Py_ssize_t type for number of argumentsVictor Stinner2016-08-243-3/+5
| | | | | Issue #27848: use Py_ssize_t rather than C int for the number of function positional and keyword arguments.
* _PyFunction_FastCallDict() supports keyword argsVictor Stinner2016-08-222-2/+2
| | | | | | | | Issue #27809: * Rename _PyFunction_FastCall() to _PyFunction_FastCallDict() * Rename _PyCFunction_FastCall() to _PyCFunction_FastCallDict() * _PyFunction_FastCallDict() now supports keyword arguments
* Rename _PyObject_FastCall() to _PyObject_FastCallDict()Victor Stinner2016-08-221-4/+13
| | | | | | | | Issue #27809: * Rename _PyObject_FastCall() function to _PyObject_FastCallDict() * Add _PyObject_FastCall(), _PyObject_CallNoArg() and _PyObject_CallArg1() macros calling _PyObject_FastCallDict()
* Merge #27782 fix from 3.5Nick Coghlan2016-08-211-1/+1
|\
| * Issue #27782: Fix m_methods handling in multiphase initNick Coghlan2016-08-211-1/+1
| | | | | | | | | | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang.
* | Merge spelling fixes from 3.5Martin Panter2016-08-201-2/+2
|\ \ | |/
| * Minor spelling fixesMartin Panter2016-08-201-2/+2
| |
* | Fix PyObject_Call() parameter namesVictor Stinner2016-08-192-2/+2
| | | | | | | | | | | | Issue #27128: arg=>args, kw=>kwargs. Same change for PyEval_CallObjectWithKeywords().
* | Add _PyObject_FastCall()Victor Stinner2016-08-193-1/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #27128: Add _PyObject_FastCall(), a new calling convention avoiding a temporary tuple to pass positional parameters in most cases, but create a temporary tuple if needed (ex: for the tp_call slot). The API is prepared to support keyword parameters, but the full implementation will come later (_PyFunction_FastCall() doesn't support keyword parameters yet). Add also: * _PyStack_AsTuple() helper function: convert a "stack" of parameters to a tuple. * _PyCFunction_FastCall(): fast call implementation for C functions * _PyFunction_FastCall(): fast call implementation for Python functions
* | Start 3.6.0bb1Ned Deily2016-08-161-1/+1
| |
* | Version bump for 3.6.0a4v3.6.0a4Ned Deily2016-08-151-2/+2
| |
* | Issue #12345: Add mathemathcal constant tau to math and cmath.Guido van Rossum2016-08-151-0/+6
| | | | | | | | Patch by Lisa Roach. See also PEP 628.