Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-29943: Remove the PySlice_GetIndicesEx() macro. (#1050) | Serhiy Storchaka | 2017-04-16 | 1 | -5/+0 |
| | |||||
* | Issue #27867: Fixed merging error. | Serhiy Storchaka | 2017-02-04 | 1 | -1/+1 |
| | |||||
* | Issue #27867: Silenced may-be-used-uninitialized warnings after | Serhiy Storchaka | 2017-02-04 | 1 | -2/+3 |
| | | | | using PySlice_GetIndicesEx() in debug builds. | ||||
* | Issue #27867: Replaced function PySlice_GetIndicesEx() with a macro. | Serhiy Storchaka | 2017-01-25 | 1 | -0/+10 |
| | |||||
* | many more types to initialize (I had to expose some of them) | Benjamin Peterson | 2009-04-18 | 1 | -0/+1 |
| | |||||
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and ↵ | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
| | | | | Py_REFCNT. Macros for b/w compatibility are available. | ||||
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -1/+1 |
| | | | | | backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and PyVarObject_HEAD_INIT. | ||||
* | Stop duplicating code and handle slice indices consistently and correctly | Neal Norwitz | 2006-03-23 | 1 | -0/+1 |
| | | | | wrt to ssize_t. | ||||
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -5/+5 |
| | |||||
* | Wrote down the invariants of some common objects whose structure is | Armin Rigo | 2004-10-28 | 1 | -2/+2 |
| | | | | | | | | | | exposed in header files. Fixed a few comments in these headers. As we might have expected, writing down invariants systematically exposed a (minor) bug. In this case, function objects have a writeable func_code attribute, which could be set to code objects with the wrong number of free variables. Calling the resulting function segfaulted the interpreter. Added a corresponding test. | ||||
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 1 | -5/+5 |
| | | | | Thanks to Skip Montanaro and Kalle Svensson for the patches. | ||||
* | This is my nearly two year old patch | Michael W. Hudson | 2002-06-11 | 1 | -0/+3 |
| | | | | | | | | | [ 400998 ] experimental support for extended slicing on lists somewhat spruced up and better tested than it was when I wrote it. Includes docs & tests. The whatsnew section needs expanding, and arrays should support extended slices -- later. | ||||
* | ANSI-fication and Py_PROTO extermination. | Fred Drake | 2000-07-09 | 1 | -6/+6 |
| | |||||
* | Add DL_IMPORT(returntype) for all officially exported functions. | Guido van Rossum | 1998-12-04 | 1 | -2/+2 |
| | |||||
* | Forget about Ellipses b/w compatibility. | Guido van Rossum | 1996-10-16 | 1 | -1/+0 |
| | |||||
* | Ellipses -> Ellipsis rename (the dictionary really says that it should | Guido van Rossum | 1996-10-11 | 1 | -4/+4 |
| | | | | | | | | be Ellipsis!). Bumped the API version because a linker-visible symbol is affected. Old C code will still compile -- there's a b/w compat macro. Similarly, old Python code will still run, builtin exports both Ellipses and Ellipsis. | ||||
* | Slice and ellipses interface | Guido van Rossum | 1996-07-30 | 1 | -0/+40 |