Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make Py_ReturnNullError() statis as it should be. | Guido van Rossum | 1996-11-11 | 1 | -1/+1 |
| | |||||
* | Only call sq_length in Sequence_GetItem for negative index. | Guido van Rossum | 1996-11-09 | 1 | -4/+6 |
| | |||||
* | correct typo in return variable for PySequence_Index() | Guido van Rossum | 1996-11-06 | 1 | -1/+1 |
| | |||||
* | New permission notice, includes CNRI. | Guido van Rossum | 1996-10-25 | 21 | -269/+416 |
| | |||||
* | Fixed compare function to do first char comparison in unsigned mode, | Guido van Rossum | 1996-10-23 | 1 | -1/+1 |
| | | | | for consistency with the way other characters are compared. | ||||
* | Support passing in an empty dictionary of keywords to newinstanceobject. | Guido van Rossum | 1996-10-21 | 1 | -1/+3 |
| | |||||
* | Ellipses -> Ellipsis rename (the dictionary really says that it should | Guido van Rossum | 1996-10-11 | 1 | -9/+9 |
| | | | | | | | | 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. | ||||
* | Fix subtle bug detected by Jim F. | Guido van Rossum | 1996-09-30 | 1 | -1/+1 |
| | |||||
* | Oops... Need to clear c_error before calling c_quot(). | Guido van Rossum | 1996-09-12 | 1 | -0/+2 |
| | |||||
* | Properly(?) implemented remainder and divmod (Tim Hochberg) | Guido van Rossum | 1996-09-12 | 1 | -5/+34 |
| | |||||
* | Raise exception instead of dropping imag part for conversion to int, | Guido van Rossum | 1996-09-11 | 1 | -11/+9 |
| | | | | | | long, float. Raise exception instead of dumping core for remainder and divmod. | ||||
* | More detailed error message about exception in __del__ | Guido van Rossum | 1996-09-11 | 1 | -3/+6 |
| | |||||
* | Correct typo in setattr: return -1 for error, not NULL | Guido van Rossum | 1996-09-11 | 1 | -1/+1 |
| | |||||
* | Multiply by 1000003 instead of 3 in string hach | Guido van Rossum | 1996-09-11 | 1 | -1/+1 |
| | |||||
* | Get rid of bogus MSC_VER undef of CHECK() | Guido van Rossum | 1996-09-11 | 1 | -4/+0 |
| | |||||
* | Don't dump core on complex % or divmod -- raise a TypeError exception. | Guido van Rossum | 1996-09-11 | 1 | -2/+14 |
| | |||||
* | Use getstringsize where available instead of strlen. | Guido van Rossum | 1996-08-26 | 1 | -1/+1 |
| | |||||
* | Be a bit more careful with printing a warning for a failed __del__. | Guido van Rossum | 1996-08-22 | 1 | -2/+5 |
| | |||||
* | Added PyObject_DelItem and PySequence_Del{Item,Slice}. | Guido van Rossum | 1996-08-21 | 1 | -0/+61 |
| | |||||
* | More efficient handling of "__doc__" lookup. | Guido van Rossum | 1996-08-21 | 1 | -2/+8 |
| | |||||
* | Write warning about exception in __del__ to stderr, not stdout. | Guido van Rossum | 1996-08-20 | 1 | -1/+1 |
| | |||||
* | Changes to make the file acceptable to K&R C compilers (HPUX, SunOS 4.x). | Guido van Rossum | 1996-08-19 | 1 | -25/+38 |
| | |||||
* | Test for negative # to the nonintegral float power here. | Guido van Rossum | 1996-08-16 | 1 | -15/+12 |
| | | | | Expanded powi() in-line. | ||||
* | Disable support for access statement | Guido van Rossum | 1996-08-12 | 3 | -4/+37 |
| | |||||
* | Define reference count admin debug functions to return void. | Guido van Rossum | 1996-08-12 | 1 | -0/+4 |
| | |||||
* | Optimizations by Sjoerd: | Guido van Rossum | 1996-08-09 | 1 | -81/+172 |
| | | | | | - define tp_getattro, tp_setattro - use precreated string objects for most common exceptions and method names | ||||
* | Support for tp_getattro, tp_setattro (Sjoerd) | Guido van Rossum | 1996-08-09 | 3 | -0/+33 |
| | |||||
* | Use pre-created string objects for most common exceptions | Guido van Rossum | 1996-08-09 | 1 | -2/+8 |
| | | | | (especially IndexError which is caught by 'for') | ||||
* | Correct wrong calculation of pow(0.0, 0.0, negative_number) | Guido van Rossum | 1996-08-09 | 1 | -5/+6 |
| | |||||
* | Allow compilation by K&R C compiler. | Guido van Rossum | 1996-08-01 | 1 | -8/+8 |
| | |||||
* | repr("...") -> "Ellipses" | Guido van Rossum | 1996-07-30 | 1 | -1/+1 |
| | |||||
* | Added sliceobject.c | Guido van Rossum | 1996-07-30 | 2 | -2/+189 |
| | |||||
* | Speedup suggested by Sjoerd | Guido van Rossum | 1996-07-30 | 2 | -6/+8 |
| | |||||
* | Use NEWOBJ() macro instead of calling newobject() directly. | Guido van Rossum | 1996-07-22 | 1 | -1/+1 |
| | |||||
* | complex -> Py_complex | Guido van Rossum | 1996-07-21 | 1 | -40/+40 |
| | |||||
* | Hacks for MS_COREDLL | Guido van Rossum | 1996-07-21 | 1 | -0/+19 |
| | |||||
* | Only __dict__ and __class__ are read-only instance attributes | Guido van Rossum | 1996-07-21 | 1 | -2/+4 |
| | |||||
* | Different logic for defining CHECK(); 16-bit MSC specific define. | Guido van Rossum | 1996-06-26 | 1 | -2/+8 |
| | |||||
* | rename printrefs, getobjects to _Py_ prefix | Guido van Rossum | 1996-05-24 | 1 | -2/+2 |
| | |||||
* | make some things static | Guido van Rossum | 1996-05-24 | 2 | -6/+6 |
| | |||||
* | new debugger symbol names | Guido van Rossum | 1996-05-23 | 3 | -8/+8 |
| | |||||
* | TRACE_REFS -> Py_TRACE_REFS. | Guido van Rossum | 1996-05-22 | 1 | -1/+5 |
| | | | | Added disgusting hack to force loading of abstract.o. | ||||
* | Plug memory leak in the previous fix :-( | Guido van Rossum | 1996-05-21 | 1 | -1/+0 |
| | |||||
* | Fix obscure bug in string%mapping where the mapping creates its items | Guido van Rossum | 1996-05-21 | 1 | -21/+12 |
| | | | | | on the fly -- there was an unsafe DECREF. Actually save some lines of code by using abstract.c:PyObject_GetItem(). | ||||
* | Added __name__ attribute to class instance method objects. | Guido van Rossum | 1996-05-14 | 1 | -7/+15 |
| | | | | | | Removed im_doc attribute; __name__ and __doc__ are now handled by special casing in instancemethodgetattr(). This saves a few bytes and INCREF/DECREF calls per i.m. object allocation/deallocation. | ||||
* | use 'j' instead of 'i' for imaginary constants | Guido van Rossum | 1996-01-25 | 1 | -2/+2 |
| | |||||
* | Removed unused var | Jack Jansen | 1996-01-25 | 1 | -1/+0 |
| | |||||
* | added complex and c objects | Guido van Rossum | 1996-01-12 | 1 | -2/+6 |
| | |||||
* | Hack to force loading of cobject.o | Guido van Rossum | 1996-01-12 | 1 | -0/+4 |
| | |||||
* | better power implementation | Guido van Rossum | 1996-01-12 | 1 | -18/+54 |
| |