Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New lay-out of frame object, for fewer mallocs. | Guido van Rossum | 1997-01-20 | 1 | -9/+8 |
| | | | | See frameobject.c checkin message. | ||||
* | Bump API version due to the various speedup hacks. | Guido van Rossum | 1997-01-18 | 1 | -2/+4 |
| | |||||
* | Two speedup hacks. Caching the hash saves recalculation of a string's | Guido van Rossum | 1997-01-18 | 1 | -3/+23 |
| | | | | | | | | | | hash value. Interning strings (which requires hash caching) tries to ensure that only one string object with a given value exists, so equality tests are one pointer comparison. Together, these can speed the interpreter up by as much as 20%. Each costs the size of a long or pointer per string object. In addition, interned strings live until the end of times. If you are concerned about memory footprint, simply comment the #define out here (and rebuild everything!). | ||||
* | Add co_stacksize field to codeobject structure, and stacksize argument | Guido van Rossum | 1997-01-17 | 1 | -1/+3 |
| | | | | | to PyCode_New() argument list. Also add CO_MAXBLOCKS constant indicating the maximum static nesting supported by the compiler. | ||||
* | Jim's latest version | Guido van Rossum | 1997-01-06 | 1 | -8/+12 |
| | |||||
* | added PyTuple_GET_SIZE macro | Barry Warsaw | 1997-01-06 | 1 | -0/+1 |
| | |||||
* | added PyString_GET_SIZE macro | Barry Warsaw | 1997-01-06 | 1 | -1/+2 |
| | | | | | for both PyString_GET_SIZE and PyString_AS_STRING, cast first argument to a PyStringObject* | ||||
* | added PyList_GET_SIZE macro | Barry Warsaw | 1997-01-06 | 1 | -1/+2 |
| | | | | | for both PyList_GET_SIZE and PyList_GET_ITEM, cast first argument to a PyListObject* | ||||
* | Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong(). | Guido van Rossum | 1997-01-03 | 1 | -0/+2 |
| | |||||
* | Added declaration for PyErr_SetInterrupt. | Barry Warsaw | 1997-01-03 | 1 | -1/+4 |
| | |||||
* | Rename DEBUG macro to Py_DEBUG | Guido van Rossum | 1996-12-30 | 3 | -4/+4 |
| | |||||
* | Added remaining declarations needed/used in glmodule.c; keeps gcc -Wall happy. | Guido van Rossum | 1996-12-10 | 1 | -5/+28 |
| | |||||
* | Add const to error and newstring functions | Guido van Rossum | 1996-12-10 | 2 | -3/+3 |
| | |||||
* | Jim F's brainchild | Guido van Rossum | 1996-12-05 | 1 | -0/+130 |
| | |||||
* | Added missing for PySequence_List. | Guido van Rossum | 1996-12-05 | 1 | -0/+5 |
| | |||||
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 53 | -681/+1052 |
| | |||||
* | Changed version to plain "1.4". | Guido van Rossum | 1996-10-22 | 1 | -1/+1 |
| | |||||
* | 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 | 2 | -6/+8 |
| | | | | | | | | 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. | ||||
* | Add waitflag to down_sema(). | Guido van Rossum | 1996-10-08 | 2 | -2/+6 |
| | |||||
* | Rationalized PC compiler defines: require MS_WINDOWS or __BORLANDC__ | Guido van Rossum | 1996-09-11 | 1 | -1/+2 |
| | | | | or __WATCOMC__. Add ALTSEP for PC filesystems. | ||||
* | PyMapping_DelItem[String] are actually macros. | Guido van Rossum | 1996-09-06 | 1 | -2/+6 |
| | |||||
* | Correctly document PyNumber_Coerce. | Guido van Rossum | 1996-09-06 | 1 | -6/+14 |
| | |||||
* | Change comments/#ifdef structure for declaration for hypot(). | Guido van Rossum | 1996-08-29 | 1 | -4/+2 |
| | |||||
* | Bump patchlevel (a bit early, but what the heck...) | Guido van Rossum | 1996-08-22 | 1 | -1/+1 |
| | |||||
* | Add PYTHON_API_STRING, which is PYTHON_API_VERSION as a string literal. | Guido van Rossum | 1996-08-22 | 1 | -0/+22 |
| | | | | | | | | | | Under Windows, add MS_DLL_ID and MS_DLL_VERSION_ID for Mark H. Independent change: if Py_TRACE_REFS is defined, rename Py_InitModule4 so so linking with incompatible modules will create a link time error. [Backing out of previous changes (also for modsupport.c) to test the latter at runtime.] | ||||
* | Added PyObject_DelItem and PySequence_Del{Item,Slice}. | Guido van Rossum | 1996-08-21 | 1 | -0/+23 |
| | |||||
* | Always include config.h | Guido van Rossum | 1996-08-19 | 2 | -4/+0 |
| | |||||
* | Added declaration for *PyMarshal_WriteObjectToString(). | Guido van Rossum | 1996-08-19 | 1 | -0/+1 |
| | |||||
* | Add prototypes for c_sum() etc. | Guido van Rossum | 1996-08-19 | 1 | -6/+6 |
| | |||||
* | Disable support for access statement | Guido van Rossum | 1996-08-12 | 2 | -35/+39 |
| | |||||
* | Added extern declarations for reference count admin debug functions. | Guido van Rossum | 1996-08-12 | 1 | -3/+10 |
| | |||||
* | Renamed to pyerrors.h | Guido van Rossum | 1996-08-09 | 1 | -76/+0 |
| | |||||
* | Added tp_getattro, tp_setattro (Sjoerd) | Guido van Rossum | 1996-08-09 | 1 | -2/+4 |
| | |||||
* | Correctly use Py_PROTO, not obsolete PROTO. | Guido van Rossum | 1996-08-08 | 1 | -1/+1 |
| | |||||
* | Renamed errors. -> pyerrors.h (for Mac, where Errors.h is a system header). | Guido van Rossum | 1996-08-08 | 1 | -1/+1 |
| | |||||
* | Typo: PySequence_Lenth -> PySequence_Length. | Guido van Rossum | 1996-08-08 | 1 | -1/+1 |
| | |||||
* | Put definition of _REENTRANT in config.h | Guido van Rossum | 1996-08-01 | 1 | -6/+0 |
| | |||||
* | patch level 1.4b2 | Guido van Rossum | 1996-07-30 | 1 | -1/+1 |
| | |||||
* | Added extern defn of hypot(). | Guido van Rossum | 1996-07-30 | 1 | -0/+6 |
| | |||||
* | Slice and ellipses interface | Guido van Rossum | 1996-07-30 | 1 | -0/+40 |
| | |||||
* | Turn on CACHE_HASH, for 2% speedier dict lookups | Guido van Rossum | 1996-07-30 | 1 | -0/+3 |
| | |||||
* | Added BUILD_SLICE opcode. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
| | |||||
* | Two bumps for the price of one (PYTHON_API_VERSION) | Guido van Rossum | 1996-07-30 | 1 | -2/+9 |
| | |||||
* | Changes due to slice and ellipses grammar changes | Guido van Rossum | 1996-07-30 | 1 | -7/+9 |
| | |||||
* | Added sliceobject.h. | Guido van Rossum | 1996-07-30 | 1 | -0/+1 |
| | |||||
* | renamed complex -> Py_complex | Guido van Rossum | 1996-07-21 | 1 | -10/+10 |
| | |||||
* | Hacks for MS_COREDLL | Guido van Rossum | 1996-07-21 | 1 | -0/+14 |
| | |||||
* | added new names for getprogramname, getargcargv | Guido van Rossum | 1996-07-21 | 1 | -0/+2 |
| | |||||
* | Added prototype + doc for PySequence_Length() | Guido van Rossum | 1996-07-21 | 1 | -0/+7 |
| |