1. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  2. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 23 years ago
  3. 70128a1 PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with by Tim Peters · 23 years ago
  4. c605784 dict_repr: Reuse one of the int vars (minor code simplification). by Tim Peters · 23 years ago
  5. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 23 years ago
  6. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  7. cf37dfc Change IS_LITTLE_ENDIAN macro -- a little faster now. by Tim Peters · 23 years ago
  8. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  9. ede0509 _PyLong_AsByteArray: simplify the logic for dealing with the most- by Tim Peters · 23 years ago
  10. ce9de2f PyLong_From{Unsigned,}Long: count the # of digits first, so no more space by Tim Peters · 23 years ago
  11. f251d06 _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No by Tim Peters · 23 years ago
  12. 05607ad _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's by Tim Peters · 23 years ago
  13. 898cf85 _PyLong_AsByteArray: added assert that the input is normalized. This is by Tim Peters · 23 years ago
  14. 9cb0c38 PyLong_As{Unsigned,}LongLong: fiddled final result casting. by Tim Peters · 23 years ago
  15. d1a7da6 longobject.c: by Tim Peters · 23 years ago
  16. 8bc84b4 _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving by Tim Peters · 23 years ago
  17. 8c2133d Fix for bug #432384: Recursion in PyString_AsEncodedString? by Marc-André Lemburg · 23 years ago
  18. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  19. 2a9b367 Two new private longobject API functions, by Tim Peters · 23 years ago
  20. fcc54ca Added a missing cast to the hashfunc initializer. by Jack Jansen · 23 years ago
  21. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 23 years ago
  22. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  23. afb6ae8 Store the mask instead of the size in dictobjects. The mask is more by Tim Peters · 23 years ago
  24. 453163d lookdict: stop more insane core-dump mutating comparison cases. Should by Tim Peters · 23 years ago
  25. 7b5d0af lookdict: Reduce obfuscating code duplication with a judicious goto. by Tim Peters · 23 years ago
  26. 19b77cf Finish the dict->string coredump fix. Need sleep. Bugfix candidate. by Tim Peters · 23 years ago
  27. 23cf6be Coredumpers from Michael Hudson, mutating dicts while printing or by Tim Peters · 23 years ago
  28. f4b33f6 dict_popitem(): Repaired last-second 2.1 comment, which misidentified the by Tim Peters · 23 years ago
  29. eb28ef2 New collision resolution scheme: no polynomials, simpler, faster, less by Tim Peters · 23 years ago
  30. 9cea41c fix bogus indentation by Jeremy Hylton · 23 years ago
  31. 0dcea59 _PyTuple_Resize: guard against PyTuple_New() returning NULL, using Tim's by Thomas Wouters · 23 years ago
  32. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  33. 6a92237 _PyTuple_Resize: take into account the empty tuple. There can be only one. by Thomas Wouters · 23 years ago
  34. 15d4929 Implement an old idea of Christian Tismer's: use polynomial division by Tim Peters · 23 years ago
  35. 1af03e9 Change list.extend() error msgs and NEWS to reflect that list.extend() by Tim Peters · 23 years ago
  36. 442914d Cruft cleanup: removed the #ifdef'ery in support of compiling to allow by Tim Peters · 23 years ago
  37. 65b8b84 roundupsize() and friends: fiddle over-allocation strategy for list resizing. by Tim Peters · 23 years ago
  38. cd35306 Patch #424335: Implement string_richcompare, remove string_compare. by Martin v. Löwis · 23 years ago
  39. f8a548c dictresize(): Rebuild small tables if there are any dummies, not just if by Tim Peters · 23 years ago
  40. 0c6010b Jack Jansen hit a bug in the new dict code, reported on python-dev. by Tim Peters · 23 years ago
  41. 0c23231 Remove unused variable. by Fred Drake · 23 years ago
  42. dea48ec SF patch #425242: Patch which "inlines" small dictionaries. by Tim Peters · 23 years ago
  43. 5b02184 file_getiter(): make iter(file) be equivalent to file.xreadlines(). by Guido van Rossum · 23 years ago
  44. 0ba9e3a init_name_op(): add (void) to the argument list to make it a valid by Guido van Rossum · 23 years ago
  45. 489b56e This patch changes the behaviour of the UTF-16 codec family. Only the by Marc-André Lemburg · 23 years ago
  46. 91a364d Bugfix candidate. by Tim Peters · 23 years ago
  47. 1928314 Speed dictresize by collapsing its two passes into one; the reason given by Tim Peters · 23 years ago
  48. d7ed3bf Speed tuple comparisons in two ways: by Tim Peters · 23 years ago
  49. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 23 years ago
  50. 342c65e Aggressive reordering of dict comparisons. In case of collision, it stands by Tim Peters · 23 years ago
  51. 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 23 years ago
  52. 16cabc0 Repair "module has no attribute xxx" error msg; bug introduced when by Tim Peters · 23 years ago
  53. d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 23 years ago
  54. 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
  55. 5acbfcc Cosmetic: code under "else" clause was missing indent. by Tim Peters · 23 years ago
  56. 4fa58bf Restore dicts' tp_compare slot, and change dict_richcompare to say it by Tim Peters · 23 years ago
  57. 3918fb2 Repair typo in comment. by Tim Peters · 23 years ago
  58. 95bf939 SF bug #422121 Insecurities in dict comparison. by Tim Peters · 23 years ago
  59. 9c012af Heh. I need a break. After this: stropmodule & stringobject were more by Tim Peters · 23 years ago
  60. 4cd44ef Fudge. stropmodule and stringobject both had copies of the buggy by Tim Peters · 23 years ago
  61. 1a97d5f SF patch #416247 2.1c1 stringobject: unused vrbl cleanup. Thanks to Mark Favas. by Tim Peters · 23 years ago
  62. 4862ab7 Sheesh -- repair the dodge around "cast isn't an lvalue" complaints to by Tim Peters · 23 years ago
  63. 9e897f4 Mark Favas reported that gcc caught me using casts as lvalues. Dodge it. by Tim Peters · 23 years ago
  64. b4bbcd7 Ack! Restore the COUNT_ALLOCS one_strings code. by Tim Peters · 23 years ago
  65. cf5ad5d My change to string_item() left an extra reference to each 1-character by Tim Peters · 23 years ago
  66. 5b4d477 Intern 1-character strings as soon as they're created. As-is, they aren't by Tim Peters · 23 years ago
  67. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  68. e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 23 years ago
  69. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  70. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  71. 6d60b2e SF bug #422108 - Error in rich comparisons. by Tim Peters · 23 years ago
  72. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  73. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  74. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  75. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  76. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  77. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  78. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  79. 6aebded The weakref support in PyObject_InitVar() as well; this should have come out by Fred Drake · 23 years ago
  80. ba40ec4 Remove unnecessary intialization for the case of weakly-referencable objects; by Fred Drake · 23 years ago
  81. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 23 years ago
  82. b1f35bf Mchael Hudson pointed out that the code for detecting changes in by Guido van Rossum · 23 years ago
  83. 542fe56 Fix for bug #417030: "print '%*s' fails for unicode string" by Marc-André Lemburg · 23 years ago
  84. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  85. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  86. 4766892 Discard a misleading comment about iter_iternext(). by Guido van Rossum · 23 years ago
  87. 4f288ab Printing objects to a real file still wasn't done right: if the by Guido van Rossum · 23 years ago
  88. 189f1df Add a proper implementation for the tp_str slot (returning self, of by Guido van Rossum · 23 years ago
  89. 09e563a Add experimental iterkeys(), itervalues(), iteritems() to dict objects. by Guido van Rossum · 23 years ago
  90. 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 23 years ago
  91. b3d8d1f A different approach to the problem reported in by Tim Peters · 23 years ago
  92. 3a80c4a (Adding this to the trunk as well.) by Guido van Rossum · 23 years ago
  93. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  94. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  95. 6596725 Oops, forgot to merge this from the iter-branch to the trunk. by Guido van Rossum · 23 years ago
  96. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  97. 0531148 Adding iterobject.[ch], which were accidentally not added. Sorry\! by Guido van Rossum · 23 years ago
  98. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  99. 55ad67d Oops. Removed dictiter_new decl that wasn't supposed to go in yet. by Guido van Rossum · 23 years ago
  100. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago