1. 7889010 Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, by Thomas Wouters · 24 years ago
  2. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  3. 1f5871e Removed Py_PROTO and switched to ANSI C declarations in the dict by Tim Peters · 24 years ago
  4. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  5. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  6. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  7. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  8. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  9. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  10. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  11. a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 24 years ago
  12. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  13. 52fccfd dict_has_key(): Accept only one parameter. PR#210 reported by by Fred Drake · 24 years ago
  14. 2bc1379 Vladimir Marangozov contributed updated comments. by Guido van Rossum · 25 years ago
  15. f05fc71 Remove dead code discovered by Vladimir Marangozov. by Guido van Rossum · 26 years ago
  16. c1c7b1a Slight rearrangement of code in lookdict() by Vladimir Marangozov, to by Guido van Rossum · 26 years ago
  17. 0fd0033 Avoid using calloc(). This triggered an obscure bug on multiprocessor by Guido van Rossum · 26 years ago
  18. 474b19e Make sure that PyDict_GetItem[String]() *never* raises an exception. by Guido van Rossum · 26 years ago
  19. 255443b Use Py_Repr{Enter,Leave} to display recursive dictionaries in finite space. by Guido van Rossum · 26 years ago
  20. 6fcfa72 Correct Barry's fix -- take care of {}.get(0). by Guido van Rossum · 27 years ago
  21. 320ac33 dict_get(): Fixed a couple of stupid mistakes which caused crashes. by Barry Warsaw · 27 years ago
  22. c38c5da dict_get(): New method for item access with different semantics than by Barry Warsaw · 27 years ago
  23. 4f3bf1e Don't intern the key string for getitem and delitem. by Guido van Rossum · 27 years ago
  24. fd7a0b8 Made lookdict nearly twice as fast, resulting in a 5% overall by Guido van Rossum · 27 years ago
  25. 5d8123f Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
  26. a8d5131 Renamed dict.absorb() (too spungy) to dict.update(). by Guido van Rossum · 27 years ago
  27. e3f5b9c Added dict.absorb() and dict.copy(). by Guido van Rossum · 27 years ago
  28. 5b2121b PyObject_Compare can now return an error. Unfortunately, there are a by Guido van Rossum · 27 years ago
  29. 037b220 Moved PyObject_{Get,Set}Attr to object.c. by Guido van Rossum · 27 years ago
  30. 3cca245 Got rid of all the last_name_* bogosities. I don't think the by Guido van Rossum · 27 years ago
  31. a9e7a81 Renamed from mappingobject.c to dictobject.c. by Guido van Rossum · 27 years ago
  32. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  33. 3648884 (Jack:) Align mapping entries to 4-words if USE_CACHE_ALIGNED is defined. by Guido van Rossum · 27 years ago
  34. 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 27 years ago
  35. fb8f1ca Add clear() method to dictionary objects. by Guido van Rossum · 27 years ago
  36. efb4609 Small lookmapping nits: by Guido van Rossum · 27 years ago
  37. 9e5656c Final three poly table entries corrected by Tim Peters. by Guido van Rossum · 27 years ago
  38. 16e93a8 Changed the lookup algorithm again, based on Reimer Behrends's post. by Guido van Rossum · 27 years ago
  39. ca756f2 Forget keeping track of whether a dictionary contains all interned by Guido van Rossum · 27 years ago
  40. 2a61e74 String interning. by Guido van Rossum · 27 years ago
  41. 7d18159 Rewrote lookmapping() according to suggestions by Jyrki Alakuijala. by Guido van Rossum · 28 years ago
  42. a0a69b8 Experimental new implementation of dictionary comparison. This by Guido van Rossum · 28 years ago
  43. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  44. d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
  45. 310968d Speedup suggested by Sjoerd by Guido van Rossum · 28 years ago
  46. 992ded8 fix free memory reads in dictlookup et al by Guido van Rossum · 29 years ago
  47. 5fe6058 a few peephole optimizations by Guido van Rossum · 29 years ago
  48. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  49. efc8713 * Objects/mappingobject.c (mappingremove): don't call by Guido van Rossum · 30 years ago
  50. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  51. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  52. 8732d6a Fix lay-out of previous fix. by Guido van Rossum · 31 years ago
  53. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  54. 52f2c05 * parsermodule.c, Makefile, config.c: rudimentary interface to the Python by Guido van Rossum · 31 years ago
  55. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  56. 4199fac Added getmappingsize(). (Needed by previous checkin of posixmodule.c) by Guido van Rossum · 31 years ago
  57. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  58. 1fc238a Minor fixes / changes for Mac compatibility. by Guido van Rossum · 31 years ago
  59. 2583165 Several changes in one: by Guido van Rossum · 31 years ago
  60. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  61. 4b1302b Generalized version of dictionaries, with compatibility hacks. by Guido van Rossum · 31 years ago