1. 9a4577a bpo-29347: Fix possibly dereferencing undefined pointers when creating weakref objects (#128) (#186) by Xiang Zhang · 7 years ago
  2. 3466bde Avoid calling functions with an empty string as format string by Victor Stinner · 8 years ago
  3. 17e2295 Issue #17765: weakref.ref() no longer silently ignores keyword arguments. by Serhiy Storchaka · 8 years ago
  4. 21eb487 Issue #17765: weakref.ref() no longer silently ignores keyword arguments. by Serhiy Storchaka · 8 years ago
  5. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  6. 4aa8679 Issue #23783: Fixed memory leak in PyObject_ClearWeakRefs() in case of by Serhiy Storchaka · 9 years ago
  7. 556e94b Issue #17643: Add __callback__ attribute to weakref.ref. by Mark Dickinson · 11 years ago
  8. f93ed3f Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 11 years ago
  9. 62a0d6e Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 11 years ago
  10. f6a50cf Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  11. e11fecb Issue #16453: Fix equality testing of dead weakref objects. by Antoine Pitrou · 12 years ago
  12. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  13. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  14. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  15. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  16. 44afe2b Issue #10833: Remove the buffer allocated on the stack, it isn't used anymore by Victor Stinner · 13 years ago
  17. 499dfcf Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead of by Victor Stinner · 13 years ago
  18. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  19. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  20. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  21. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  22. 3201977 fix __bytes__ handling here in py3x by Benjamin Peterson · 15 years ago
  23. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  24. 17c7cd8 Replace PyNumber_Int with PyNumber_Long. by Mark Dickinson · 15 years ago
  25. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 15 years ago
  26. cce2f21 Issue 4910, patch 2 of (probably) 3: pave the way for renaming of by Mark Dickinson · 15 years ago
  27. 9aa4299 Merged revisions 66337,66347,66350,66352,66358 via svnmerge from by Benjamin Peterson · 16 years ago
  28. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  29. a38d156 add some casts and fix the build from 64311 by Benjamin Peterson · 16 years ago
  30. c856c7a Merged revisions 64309 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  31. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  32. 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
  33. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  34. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  35. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  36. f616b22 Support unicode names by Neal Norwitz · 17 years ago
  37. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  38. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  39. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  40. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  41. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  42. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  43. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  44. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  45. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  46. bcc0db8 Get rid of remnants of integer division by Neal Norwitz · 18 years ago
  47. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  48. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  49. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  50. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 18 years ago
  51. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 18 years ago
  52. e6c470f SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 19 years ago
  53. ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
  54. 6d3265d Be more careful about maintaining the invariants; it was actually by Fred Drake · 20 years ago
  55. bdcb941 SF bug #978308, Spurious errors taking bool of dead pro by Neal Norwitz · 20 years ago
  56. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  57. bc875f5 Allocating a new weakref object can cause existing weakref objects for by Fred Drake · 20 years ago
  58. 6a2852c Fix bug in interpretation of the "callback" argument in the constructors for by Fred Drake · 20 years ago
  59. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
  60. fe89cc1 Remove proxy_print(), since that caused an inconsistency between by Fred Drake · 21 years ago
  61. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  62. c1f6e8c - The repr() of a weakref object now shows the __name__ attribute of by Guido van Rossum · 21 years ago
  63. f16c3dc Add support for the iterator protocol to weakref proxy objects. by Fred Drake · 22 years ago
  64. 38a8916 Remove weakref free list. This has the side effect of fixing a memory by Neil Schemenauer · 22 years ago
  65. 2a908f6 proxy_compare(): Make sure that we unwrap both objects being compared if by Fred Drake · 22 years ago
  66. ef8ebd1 Make sure that when we invoke callback functions associated with weak by Fred Drake · 22 years ago
  67. d586756 weakref_repr(), proxy_repr(): Conversion of sprintf() to by Barry Warsaw · 23 years ago
  68. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  69. 996fad3 Referencable is not a word, so don't use it in an error message <wink>. by Jeremy Hylton · 23 years ago
  70. 31f4d1f Remove an unnecessary check for NULL. by Fred Drake · 23 years ago
  71. 73006d0 When weakref proxies are involved in binary & ternary slot operations, by Fred Drake · 23 years ago
  72. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 23 years ago