summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* Renamed mappingobject.c to dictobject.c.Guido van Rossum1997-05-132-1036/+3
* Renamed from mappingobject.c to dictobject.c.Guido van Rossum1997-05-131-110/+104
* Faster floating point allocator, same idea as the int allocator.Guido van Rossum1997-05-131-7/+29
* Add optional 'sizehint' argument to readlines(). After approximatelyGuido van Rossum1997-05-101-23/+33
* Rewrite readlines() to speed it up -- about a factor of 2 on myGuido van Rossum1997-05-101-25/+89
* Speed up read() (i.e. read till EOF) considerably by doing a stat() toGuido van Rossum1997-05-091-15/+65
* removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits.Guido van Rossum1997-05-092-103/+5
* Fix by Mark Hammond to enable truncate() on Windows.Guido van Rossum1997-05-061-0/+6
* Checkin of Jack's buffer mods.Guido van Rossum1997-05-052-1/+77
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-2/+13
* Quickly renamed the last directory.Guido van Rossum1997-05-0218-3088/+3155
* Quickly renamed.Guido van Rossum1997-04-291-100/+101
* (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined.Guido van Rossum1997-04-112-0/+6
* Tweaks to keep the Microsoft compiler quiet.Guido van Rossum1997-04-095-18/+18
* Remove unused variable.Guido van Rossum1997-04-091-1/+0
* Remove a redundant XINCREF(value). This caused the reference count ofGuido van Rossum1997-04-031-1/+0
* Several fixes reported by jim F.Guido van Rossum1997-04-021-31/+28
* Get rid of .conj pseudo data attribute for complex numbers.Guido van Rossum1997-04-011-5/+2
* Add clear() method to dictionary objects.Guido van Rossum1997-03-212-0/+26
* New long_lshift, without restriction on size of shift count, by Tim Peters.Guido van Rossum1997-03-161-26/+22
* New form of PyFPE_END_PROTECT macro.Guido van Rossum1997-03-143-17/+17
* Add casts to CMPERROR macro to silence SunPro compiler warnings aboutGuido van Rossum1997-03-051-1/+1
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-143-10/+63
* Keep gcc -Wall happy.Guido van Rossum1997-02-141-2/+2
* Slight tweak: in string_hash(), if the hash hasn't been computed yet,Guido van Rossum1997-02-141-0/+5
* Kill all local variables when the frame is deallocated (moved hereGuido van Rossum1997-02-141-1/+11
* Small lookmapping nits:Guido van Rossum1997-01-292-10/+12
* Fix bug reported by Per Lindqvist: "%#06x" % 1 stuck the 0 paddingGuido van Rossum1997-01-291-1/+13
* Final three poly table entries corrected by Tim Peters.Guido van Rossum1997-01-292-62/+60
* Changed the lookup algorithm again, based on Reimer Behrends's post.Guido van Rossum1997-01-282-228/+202
* When a recycled frame has more local+stack slots than needed,Guido van Rossum1997-01-241-2/+4
* Forget keeping track of whether a dictionary contains all internedGuido van Rossum1997-01-232-178/+110
* Added PyCObject_Import.Guido van Rossum1997-01-221-18/+39
* Don't use static buffers internally for formatstring().Guido van Rossum1997-01-211-25/+26
* Bugfix: remove ref to fast before it's defined.Guido van Rossum1997-01-201-1/+1
* Changes that appear to give another 12% speedup.Guido van Rossum1997-01-201-87/+55
* Intern the various string objects created to speed up lookups.Guido van Rossum1997-01-181-25/+25
* Intern the strings "__builtins__".Guido van Rossum1997-01-181-1/+1
* Intern the strings created in getattr() and setattr().Guido van Rossum1997-01-181-2/+2
* String interning.Guido van Rossum1997-01-183-32/+285
* Comment out extend_stack() -- it is no longer needed.Guido van Rossum1997-01-171-0/+2
* Rewrote lookmapping() according to suggestions by Jyrki Alakuijala.Guido van Rossum1997-01-162-42/+142
* Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bitGuido van Rossum1997-01-141-2/+2
* Changed hex() and oct() again, to never emit a '-' sign.Guido van Rossum1997-01-121-7/+2
* New, better hash for floating point and complexGuido van Rossum1997-01-112-6/+41
* Subtle change to hex/oct formatting so the largest negative numberGuido van Rossum1997-01-101-2/+2
* Fix overflow test for multiply to catch some cases it missed.Guido van Rossum1997-01-061-2/+4
* Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong().Guido van Rossum1997-01-031-0/+56
* Removed all traces of accessobject.c.Guido van Rossum1996-12-252-374/+2
* PySequence_Index(): set exception when object is not found inBarry Warsaw1996-12-181-0/+1