- 7241879 use 'j' instead of 'i' for imaginary constants by Guido van Rossum · 29 years ago
- 1e7b2aa Removed unused var by Jack Jansen · 29 years ago
- d8b4925 added complex and c objects by Guido van Rossum · 29 years ago
- 97ead3f Hack to force loading of cobject.o by Guido van Rossum · 29 years ago
- 39739ea better power implementation by Guido van Rossum · 29 years ago
- cf3d108 Added PyComplex_AsCComplex by Guido van Rossum · 29 years ago
- f9fca92 complex numbers a la Konrad Hinsen by Guido van Rossum · 29 years ago
- 77654a7 opaque C object a la Jim Fulton by Guido van Rossum · 29 years ago
- 992ded8 fix free memory reads in dictlookup et al by Guido van Rossum · 29 years ago
- 8ba873b adapted to K&R C by Guido van Rossum · 29 years ago
- 6f011d7 Get ordering right for TRACE_REFS/COUNT_ALLOCS combination (otherwise by Sjoerd Mullender · 29 years ago
- 6ec3c65 Implemented two new functions in sys: by Sjoerd Mullender · 29 years ago
- 740f357 Fixed calling of __del__ method with TRACE_REFS defined. by Sjoerd Mullender · 29 years ago
- ac21f6a class objects are read-only in restricted mode by Guido van Rossum · 29 years ago
- 055968c better err checks in resizetuple by Guido van Rossum · 29 years ago
- a83f270 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
- bdd207a better policy regarding NULL locals by Guido van Rossum · 29 years ago
- 2271bf7 changes for keyword arguments and fast function call; added abstract.c by Guido van Rossum · 29 years ago
- e15dee5 Generic Abstract Object Interface by Guido van Rossum · 29 years ago
- 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
- d3f9a1a fix read(0), readline(0); make tuple for call_object args by Guido van Rossum · 29 years ago
- e08dea19 MW does not always set errno on failing fopen() by Jack Jansen · 30 years ago
- e9df727 change comparing instance methods by Guido van Rossum · 30 years ago
- d8953cb change in counting freed objects by Guido van Rossum · 30 years ago
- 5b7f3cd Use mappinglookup instead of dictlookup for looking up __builtin__. by Sjoerd Mullender · 30 years ago
- 6f9e433 fix dusty debugging macros by Guido van Rossum · 30 years ago
- 5fe6058 a few peephole optimizations by Guido van Rossum · 30 years ago
- 687ec18 changes for MPW by Guido van Rossum · 30 years ago
- 07e3a7e for MPW __SC__ compiler by Guido van Rossum · 30 years ago
- caeaafc don't complain about too many args if arg is a dict by Guido van Rossum · 30 years ago
- 295d171 explicitly init flags in methodlists by Guido van Rossum · 30 years ago
- 67ca701 NeXT/Sparc 3.3 fix by Guido van Rossum · 30 years ago
- 9fa2c11 use Py_CHARMASK; and don't check for neg. float to the float power here by Guido van Rossum · 30 years ago
- 2497ead make size arg signed by Guido van Rossum · 30 years ago
- a46d51d round up list item counts to improve realloc performance by Guido van Rossum · 30 years ago
- 6978503 added findmethodinchain and methodchain data types by Guido van Rossum · 30 years ago
- e95d92b removed unused vars by Guido van Rossum · 30 years ago
- 27e916f apply dictclear to dict of deleted modules by Guido van Rossum · 30 years ago
- 49b11fe move callable() here by Guido van Rossum · 30 years ago
- e9c6bcd fix leak in func_dealloc (forgot to decref name) by Guido van Rossum · 30 years ago
- 7874d1f Fix NULL dereference in case of out-of-memory condition by Jack Jansen · 30 years ago
- 32b582b fix strobject() behavior by Guido van Rossum · 30 years ago
- b0fe3a9 added reverselist; free recycling bin on error exit by Guido van Rossum · 30 years ago
- 3535f6e long_scan is no longer used by Guido van Rossum · 30 years ago
- ce00509 make a few things static by Guido van Rossum · 30 years ago
- 4d3468d don't declare fmod/pow for any STDC compiler by Guido van Rossum · 30 years ago
- b4e7e25 different init for __builtins__ by Guido van Rossum · 30 years ago
- 087579e added $& to $(LIB) target for Sequent by Guido van Rossum · 30 years ago
- ae7bf1a fix reentrancy bug in slice assignment by Guido van Rossum · 30 years ago
- 2056684 properly implement cmp() for class instances by Guido van Rossum · 30 years ago
- 5524a59 move coerce() from bltinmodule.c to object.c and implement builtin_coerce() differently by Guido van Rossum · 30 years ago
- 879c581 implement coercions involving instances properly by Guido van Rossum · 30 years ago
- c206c76 fix memory leak and null pointer dereference by Guido van Rossum · 30 years ago
- 10393b1 add restrictions in restricted mode by Guido van Rossum · 30 years ago
- c113482 add builtins handling and restricted flag by Guido van Rossum · 30 years ago
- e7d444f * Objects/classobject.c: added 5th (function) parameter to by Guido van Rossum · 30 years ago
- cab650d * Objects/methodobject.c: changed drastically, the object now by Guido van Rossum · 30 years ago
- 5bd3805 Added __doc__ attribute (alias func_doc), initialized from first by Guido van Rossum · 30 years ago
- 8b14b4c initialize __doc__ to None by Guido van Rossum · 30 years ago
- 29ca26e added getattr(), supporting __doc__ and _name__ by Guido van Rossum · 30 years ago
- 016564a attribute-less object is AttributeError, not TypeError by Guido van Rossum · 30 years ago
- 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- efc8713 * Objects/mappingobject.c (mappingremove): don't call by Guido van Rossum · 30 years ago
- d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
- bb3c5f7 fix comparison of instances without _-cmp__ by Guido van Rossum · 30 years ago
- b9a6d12 Comparison of two class instances without __cmp__ or __rcmp__ methods by Sjoerd Mullender · 30 years ago
- 03093a2 * Include/classobject.h, Objects/classobject.c, Python/ceval.c: by Guido van Rossum · 30 years ago
- 9776adf rearranged code in debugging version of DELREF to avoid touching data by Guido van Rossum · 30 years ago
- 52ca98a Yet another version (by me) of __getattr__ etc. by Guido van Rossum · 30 years ago
- e773754 Mods (really diffs to 2.29) by Michael Scharf for alternative __getattr__ etc. by Guido van Rossum · 30 years ago
- 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
- 013142a fix nasty bug in resizing (formatstring) by Guido van Rossum · 30 years ago
- bf8c0e3 mods by Andrew Kuchling to implement by Guido van Rossum · 30 years ago
- eb1fafc New patches by Andrew to fix various problems Add cast for Lance by Guido van Rossum · 30 years ago
- 6cd2fe0 Correct problems found by THINK C 6.0 by Guido van Rossum · 30 years ago
- f0171a1 * configure.in, */Makefile*.in: OPT can now be specified in the by Guido van Rossum · 30 years ago
- 91ab4a8 If an attribute is deleted, __setattr__ is called with 2 instead of 3 by Guido van Rossum · 30 years ago
- 0b7d02a New patches by Andrew to fix various problems by Guido van Rossum · 30 years ago
- e149fa2 * Objects/classobject.c, Include/classobject.h: added __getattr__ by Guido van Rossum · 30 years ago
- b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
- 2e1d433 Added getmaxint() so sys can initialize sys.maxint. Added Makefile.in. by Guido van Rossum · 31 years ago
- 7d6aa51 * rangeobject.[ch], bltinmodule.c: incorporate new version of range by Guido van Rossum · 31 years ago
- 455b87d New file by Guido van Rossum · 31 years ago
- 590baa4 * import.c (get_module): pass .py filename to parse_file, not .pyc filename! by Guido van Rossum · 31 years ago
- 8732d6a Fix lay-out of previous fix. by Guido van Rossum · 31 years ago
- b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
- c45611d * import.c (get_module): total rewrite, to ensure proper search order: for by Guido van Rossum · 31 years ago
- 71e57d0 Fix the fix :-( by Guido van Rossum · 31 years ago
- 6938a29 Three micro fixes to formatstring by Guido van Rossum · 31 years ago
- 52f2c05 * parsermodule.c, Makefile, config.c: rudimentary interface to the Python by Guido van Rossum · 31 years ago
- a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
- c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
- 2e8f8a3 Added compare operations for functions and code objects. by Guido van Rossum · 31 years ago
- 4199fac Added getmappingsize(). (Needed by previous checkin of posixmodule.c) by Guido van Rossum · 31 years ago
- b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
- 82d410e * fileobject.c (softspace): fix bug if called with NULL file. by Guido van Rossum · 31 years ago
- 2586bf0 * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range by Guido van Rossum · 31 years ago
- 615194a Fixed bugs in resizetuple and extended the interface. by Sjoerd Mullender · 31 years ago
- dc4b93d * listobject.c (list_ass_slice): XDECREF instead of DECREF so by Guido van Rossum · 31 years ago
- 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago