1. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  2. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  3. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  4. 3201977 fix __bytes__ handling here in py3x by Benjamin Peterson · 15 years ago
  5. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  6. 17c7cd8 Replace PyNumber_Int with PyNumber_Long. by Mark Dickinson · 15 years ago
  7. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 15 years ago
  8. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 15 years ago
  9. 9aa4299 Merged revisions 66337,66347,66350,66352,66358 via svnmerge from by Benjamin Peterson · 16 years ago
  10. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  11. a38d156 add some casts and fix the build from 64311 by Benjamin Peterson · 16 years ago
  12. c856c7a Merged revisions 64309 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  13. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  14. b533e26 Merged revisions 63412,63445-63447,63449-63450,63452,63454,63459,63463,63465,63470,63483-63484,63496-63497,63499-63501,63530-63531,63540,63614 via svnmerge from by Georg Brandl · 16 years ago
  15. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  16. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  17. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  18. f616b22 Support unicode names by Neal Norwitz · 17 years ago
  19. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  20. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  21. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  22. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  23. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  24. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  25. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  26. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  27. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  28. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  29. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  30. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  31. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  32. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
  33. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  34. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 19 years ago
  35. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  36. 6d3265d Be more careful about maintaining the invariants; it was actually by Fred Drake · 20 years ago
  37. bdcb941 SF bug #978308, Spurious errors taking bool of dead pro by Neal Norwitz · 20 years ago
  38. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  39. bc875f5 Allocating a new weakref object can cause existing weakref objects for by Fred Drake · 20 years ago
  40. 6a2852c Fix bug in interpretation of the "callback" argument in the constructors for by Fred Drake · 20 years ago
  41. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
  42. fe89cc1 Remove proxy_print(), since that caused an inconsistency between by Fred Drake · 21 years ago
  43. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  44. c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 21 years ago
  45. f16c3dc Add support for the iterator protocol to weakref proxy objects. by Fred Drake · 22 years ago
  46. 38a8916 Remove weakref free list. This has the side effect of fixing a memory by Neil Schemenauer · 22 years ago
  47. 2a908f6 proxy_compare(): Make sure that we unwrap both objects being compared if by Fred Drake · 23 years ago
  48. ef8ebd1 Make sure that when we invoke callback functions associated with weak by Fred Drake · 23 years ago
  49. d586756 weakref_repr(), proxy_repr(): Conversion of sprintf() to by Barry Warsaw · 23 years ago
  50. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  51. 996fad3 Referencable is not a word, so don't use it in an error message <wink>. by Jeremy Hylton · 23 years ago
  52. 31f4d1f Remove an unnecessary check for NULL. by Fred Drake · 23 years ago
  53. 73006d0 When weakref proxies are involved in binary & ternary slot operations, by Fred Drake · 23 years ago
  54. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 23 years ago