Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixes the upload script to purge the CDN correctly and display success ↵ | Steve Dower | 2017-03-05 | 1 | -0/+2 | |
| | | | | output. (#466) | |||||
* | bpo-27593: Updates Windows build to use information from git (#262) | Steve Dower | 2017-03-03 | 1 | -2/+2 | |
| | | | | * bpo-27593: Updates Windows build to use information from git | |||||
* | Fixes bpo-29680: Older gdb does not have gdb.error. (#363) | Lev Abalkin | 2017-03-01 | 1 | -1/+1 | |
| | | | This change is required to make python-dbg.py compatible with GDB versions before 7.3. | |||||
* | bpo-29624: Adds purge step and layout test after uploading files. (#258) | Steve Dower | 2017-02-23 | 2 | -10/+53 | |
| | ||||||
* | bpo-29463: Add docstring field to some AST nodes. (#46) | INADA Naoki | 2017-02-22 | 1 | -0/+6 | |
| | | | | | | | | | | | * bpo-29463: Add docstring field to some AST nodes. ClassDef, ModuleDef, FunctionDef, and AsyncFunctionDef has docstring field for now. It was first statement of there body. * fix document. thanks travis! * doc fixes | |||||
* | bpo-29579: Removes readme.txt from the installer. (#160) | Steve Dower | 2017-02-18 | 1 | -3/+0 | |
| | ||||||
* | Change some mercurial/ hg.python.org references. (#8) | Senthil Kumaran | 2017-02-16 | 2 | -2/+2 | |
| | ||||||
* | Includes ensurepip and venv packages in nuget package. | Steve Dower | 2017-02-06 | 1 | -2/+11 | |
|\ | ||||||
| * | Includes ensurepip and venv packages in nuget package. | Steve Dower | 2017-02-06 | 1 | -2/+11 | |
| |\ | ||||||
| | * | Includes ensurepip and venv packages in nuget package. | Steve Dower | 2017-02-06 | 1 | -2/+11 | |
| | | | ||||||
* | | | Issue #29263: LOAD_METHOD support for C methods | INADA Naoki | 2017-02-03 | 1 | -4/+1 | |
| | | | | | | | | | | | | Calling builtin method is at most 10% faster. | |||||
* | | | python-gdb.py supports method-wrapper | Victor Stinner | 2017-02-01 | 1 | -5/+48 | |
| | | | | | | | | | | | | | | | Issue #29367: python-gdb.py now supports also method-wrapper (wrapperobject) objects. | |||||
* | | | Update and enhance python-gdb.py | Victor Stinner | 2017-01-18 | 1 | -16/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Issue #29259: * Detect PyCFunction is the current frame, not only in the older frame * Ignore PyCFunction_Call() since it now calls _PyCFunction_FastCallDict(), and _PyCFunction_FastCallDict() is already detected | |||||
* | | | Fix Python 2.6 support in python-gdb.py | Victor Stinner | 2017-01-18 | 1 | -2/+2 | |
| | | | | | | | | | | | | Issue #29259. | |||||
* | | | Argument Clinic: Use METH_FASTCALL for boring positionals | Victor Stinner | 2017-01-17 | 1 | -9/+25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Issue #29286. Use METH_FASTCALL calling convention instead of METH_VARARGS to parse "boring" position arguments. METH_FASTCALL is faster since it avoids the creation of a temporary tuple to pass positional arguments. Replace PyArg_UnpackTuple() with _PyArg_UnpackStack()+_PyArg_NoStackKeywords(). | |||||
* | | | Argument Clinic: Use METH_FASTCALL for positionals | Victor Stinner | 2017-01-17 | 1 | -14/+32 | |
| | | | | | | | | | | | | | | | | | | Issue #29286. Use METH_FASTCALL calling convention instead of METH_VARARGS to parse position arguments. METH_FASTCALL is faster since it avoids the creation of a temporary tuple to pass positional arguments. | |||||
* | | | Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords | Victor Stinner | 2017-01-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | Issue #29286. | |||||
* | | | Optimize _PyCFunction_FastCallKeywords() | Victor Stinner | 2017-01-16 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #29259: Write fast path in _PyCFunction_FastCallKeywords() for METH_FASTCALL, avoid the creation of a temporary dictionary for keyword arguments. Cleanup also _PyCFunction_FastCallDict(): * Don't dereference func before checking that it's not NULL * Move code to raise the "no keyword argument" exception into a new no_keyword_error label. Update python-gdb.py for the change. | |||||
* | | | Merge 3.6 | Victor Stinner | 2016-12-16 | 1 | -2/+18 | |
|\ \ \ | |/ / | ||||||
| * | | Merge 3.5 | Victor Stinner | 2016-12-16 | 1 | -2/+18 | |
| |\ \ | | |/ | ||||||
| | * | python-gdb.py: catch gdb.error on gdb.selected_frame() | Victor Stinner | 2016-12-16 | 1 | -2/+18 | |
| | | | ||||||
* | | | Issue #28783: Replaces bdist_wininst in nuget packages with stub | Steve Dower | 2016-12-11 | 3 | -38/+22 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28783: Replaces bdist_wininst in nuget packages with stub | Steve Dower | 2016-12-11 | 3 | -38/+22 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28783: Replaces bdist_wininst in nuget packages with stub | Steve Dower | 2016-12-11 | 3 | -38/+22 | |
| | | | ||||||
| * | | Issue #28770: Update python-gdb.py for fastcalls | Victor Stinner | 2016-11-22 | 1 | -16/+31 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Frame.is_other_python_frame() now also handles _PyCFunction_FastCallDict() frames. Thanks to the new code to handle fast calls, python-gdb.py is now also able to detect the <built-in id method of module ...> frame. | |||||
* | | | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 4 | -8/+9 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 4 | -8/+9 | |
| |\ \ | | |/ | ||||||
| | * | Issue #28846: Various installer fixes | Steve Dower | 2016-12-03 | 4 | -9/+11 | |
| | | | ||||||
* | | | Reintroduce Python2 support in generate_opcode_h.py | Victor Stinner | 2016-11-28 | 1 | -3/+9 | |
| | | | | | | | | | | | | | | | | | | Issue #28821. Add also a message to show that the command did something :-) | |||||
* | | | Fix a ResourceWarning in generate_opcode_h.py | Victor Stinner | 2016-11-25 | 1 | -1/+5 | |
| | | | | | | | | | | | | | | | Use a context manager to close the Python file. Replace also open() with tokenize.open() to handle coding cookie if any in Lib/opcode.py. | |||||
* | | | Issue #28783: Embedded and nuget packages incorrect reference missing ↵ | Steve Dower | 2016-11-23 | 2 | -3/+48 | |
|\ \ \ | |/ / | | | | | | | bdist_wininst command. | |||||
| * | | Issue #28783: Embedded and nuget packages incorrect reference missing ↵ | Steve Dower | 2016-11-23 | 2 | -3/+48 | |
| |\ \ | | |/ | | | | | | | bdist_wininst command. | |||||
| | * | Issue #28783: Embedded and nuget packages incorrect reference missing ↵ | Steve Dower | 2016-11-23 | 2 | -3/+47 | |
| | | | | | | | | | | | | bdist_wininst command. | |||||
| | * | Fixes incorrect path in nuget package build. | Steve Dower | 2016-11-16 | 1 | -1/+2 | |
| | | | ||||||
* | | | Issue #28770: Update python-gdb.py for fastcalls | Victor Stinner | 2016-11-22 | 1 | -16/+31 | |
| | | | | | | | | | | | | | | | | | | | | | | | | Frame.is_other_python_frame() now also handles _PyCFunction_FastCallDict() frames. Thanks to the new code to handle fast calls, python-gdb.py is now also able to detect the <built-in id method of module ...> frame. | |||||
* | | | Issue #28573: Missing sys._mercurial info and other build issues. | Steve Dower | 2016-11-22 | 1 | -3/+16 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28573: Missing sys._mercurial info and other build issues. | Steve Dower | 2016-11-22 | 1 | -3/+16 | |
| | | | ||||||
* | | | Merge 3.6 | Victor Stinner | 2016-11-22 | 1 | -2/+6 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28023: Fix python-gdb.py on old GDB versions | Victor Stinner | 2016-11-22 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | | | | Replace int(value.address)+offset with value.cast(unsigned char*)+offset. It seems like int(value.address) fails on old versions of GDB. | |||||
* | | | Issue #28023: Fix python-gdb.py didn't support new dict implementation | INADA Naoki | 2016-11-22 | 1 | -2/+26 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28023: Fix python-gdb.py didn't support new dict implementation | INADA Naoki | 2016-11-22 | 1 | -2/+26 | |
| | | | ||||||
* | | | Issue #28573: Fixes issue with nested if blocks | Steve Dower | 2016-11-14 | 1 | -6/+6 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28573: Fixes issue with nested if blocks | Steve Dower | 2016-11-14 | 1 | -6/+6 | |
| | | | ||||||
* | | | Fixes incorrect merge | Steve Dower | 2016-11-14 | 1 | -5/+0 | |
| | | | ||||||
* | | | Issue #28573: Avoid setting up env too many times during build | Steve Dower | 2016-11-14 | 1 | -28/+9 | |
|\ \ \ | |/ / | ||||||
| * | | Issue #28573: Avoid setting up env too many times during build | Steve Dower | 2016-11-14 | 1 | -36/+9 | |
| | | | ||||||
* | | | Adds missing _asyncio.pyd to installer and generally tidies pyd management. | Steve Dower | 2016-10-29 | 3 | -69/+23 | |
|\ \ \ | |/ / | ||||||
| * | | Adds missing _asyncio.pyd to installer and generally tidies pyd management. | Steve Dower | 2016-10-29 | 3 | -69/+23 | |
| | | | ||||||
* | | | Removes incorrect condition from lib_pdb.msi | Steve Dower | 2016-10-28 | 1 | -1/+0 | |
|\ \ \ | |/ / | ||||||
| * | | Removes incorrect condition from lib_pdb.msi | Steve Dower | 2016-10-28 | 1 | -1/+0 | |
| |\ \ | | |/ |