1. ed87ad8 Minimal test for __del__ hook. by Guido van Rossum · 23 years ago
  2. c32410a PySocketSock_connect_ex(): On Windows, return the correct Windows exit by Tim Peters · 23 years ago
  3. 4ecd713 directory chooser (requires a recent version of Tk) by Fredrik Lundh · 23 years ago
  4. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  5. 7ad2d1e Add __del__ callbacks. They are too useful to leave out. by Guido van Rossum · 23 years ago
  6. c57a285 SF bug #476138: tempfile behavior across platforms by Tim Peters · 23 years ago
  7. e59feb5 Revise the PDF support in the LaTeX style sheet. This still isn't quite by Fred Drake · 23 years ago
  8. 8e26b52 Update to reflect changes to the low-level logreader: share the info by Fred Drake · 23 years ago
  9. f3c54d6 Add a test for the insertion of user-provided ADD_INFO records. by Fred Drake · 23 years ago
  10. 165b2cc Allow user code to call the addinfo() method on the profiler object. by Fred Drake · 23 years ago
  11. 4c2e1af Make the low-level log-reader object export a dictionary mapping keys by Fred Drake · 23 years ago
  12. 1117d93 dictionary -> dict by Andrew M. Kuchling · 23 years ago
  13. 4f9e220 Fix two typos noted by Jens Quade Bump version number by Andrew M. Kuchling · 23 years ago
  14. 589abb7 Add additional information on exceptions from time.mktime() and related to by Fred Drake · 23 years ago
  15. 1b58bff More refcount information. by Fred Drake · 23 years ago
  16. b0109ff Ignore all *.tex files in the typesetting output directories since there are by Fred Drake · 23 years ago
  17. 520b009 Make sure we generate versions of each file in the Python/C API manual with by Fred Drake · 23 years ago
  18. e16e54f Use connect_ex() instead of connect(). by Jeremy Hylton · 23 years ago
  19. fbd5797 Fix for SF bug 453099 -- select not defensive by Jeremy Hylton · 23 years ago
  20. 2836907 Fix some markup errors noted by MH by Andrew M. Kuchling · 23 years ago
  21. afe7a94 When overriding __str__ or __repr__, set the tp_print slot to NULL. by Guido van Rossum · 23 years ago
  22. 7c01786 more loading from cfg files by Steven M. Gava · 23 years ago
  23. 41a8532 more of config dialog reading from files by Steven M. Gava · 23 years ago
  24. 9bd1401 Use sendall() in the stream test instead of send(). by Guido van Rossum · 23 years ago
  25. cb65688 Test sendall(). by Guido van Rossum · 23 years ago
  26. b2c763f Add 'sendall' to list of socket methods. by Guido van Rossum · 23 years ago
  27. b7747e2 added finditer sanity check by Fredrik Lundh · 23 years ago
  28. ca6dfa5 Oops. In the tp_name field, the name should be "_socket.socket", not by Guido van Rossum · 23 years ago
  29. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  30. 8644321 News about the socket type and the HP-UX port. by Guido van Rossum · 23 years ago
  31. 384ca9c Made SocketType and socket the same thing: a subclassable type whose by Guido van Rossum · 23 years ago
  32. bd67d6f SF patch #475657 (Dietmar Schwertberger) by Guido van Rossum · 23 years ago
  33. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  34. 4d85953 dictionary() constructor: by Tim Peters · 23 years ago
  35. c2f0112 vgetargskeywords() by Tim Peters · 23 years ago
  36. b639d49 vgetargskeywords: Now that it's clear that nkwlist must equal max, and by Tim Peters · 23 years ago
  37. dc5eff9 vgetargskeywords: Prevent another potential sprintf buffer overrun. by Tim Peters · 23 years ago
  38. 62d48e1 vgetargskeywords: Verify kwlist has the required length while parsing by Tim Peters · 23 years ago
  39. b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
  40. 0af4916 vgetargskeywords: Removed all PyErr_Clear() calls. It's possible that by Tim Peters · 23 years ago
  41. 077f574 vgetargskeywords: The keywords arg is a dict (if non-NULL), so use the by Tim Peters · 23 years ago
  42. 61dde63 vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls. by Tim Peters · 23 years ago
  43. b054be4 vgetargskeywords: by Tim Peters · 23 years ago
  44. b0872fc vgetargskeywords: by Tim Peters · 23 years ago
  45. 6fb2635 vgetargskeywords: by Tim Peters · 23 years ago
  46. 28bf7a9 vgetargskeywords: by Tim Peters · 23 years ago
  47. f8cd3e8 PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (I by Tim Peters · 23 years ago
  48. 45772cd PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments, by Tim Peters · 23 years ago
  49. a9f4739 tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexed by Tim Peters · 23 years ago
  50. f4331c1 vgetargskeywords(): remove test that can't succeed. Not a bugfix, just by Tim Peters · 23 years ago
  51. 9fda73c dict_constructor(): The last test was passing for the wrong reason (it by Tim Peters · 23 years ago
  52. cf31d5d Fill in remaining XXX spots by Andrew M. Kuchling · 23 years ago
  53. e21e2bb Fix up a number of small problems with the DOM documentation. by Fred Drake · 23 years ago
  54. b83769c Finish off the type/class section; I don't think there's much else by Andrew M. Kuchling · 23 years ago
  55. 41cf5e0 Remove unused variable. by Fred Drake · 23 years ago
  56. 41a1b07 Now that Misc/Makefile.pre.in is gone, do not attempt to install it. by Fred Drake · 23 years ago
  57. ef428a2 Explain what [].insert() does when the target index is negative. by Fred Drake · 23 years ago
  58. d5be3b7 Add notes pointing out that these classes are kept for backward compatibility by Fred Drake · 23 years ago
  59. 5445f07 Re-arrange things and remove some unused variables/imports to keep pychecker by Fred Drake · 23 years ago
  60. c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 23 years ago
  61. 7408da5 Many, many small fixes and improvements, most suggested by Detlef Lannert. by Fred Drake · 23 years ago
  62. c44e9ec Added docs for PyObject_CallFunctionObArgs() and PyObject_CallMethodObArgs(). by Fred Drake · 23 years ago
  63. 81c7aa2 Added refcount data for PyObject_CallFunctionObArgs() and by Fred Drake · 23 years ago
  64. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  65. ef7d08a Some style changes and typo fixes. by Fred Drake · 23 years ago
  66. 3eedf71 Updated this README to reality. by Guido van Rossum · 23 years ago
  67. 12d955c Some news. by Guido van Rossum · 23 years ago
  68. 79bcc17 Delete Makefile.pre.in (BDFL pronouncement) by Andrew M. Kuchling · 23 years ago
  69. fb6499f Clean up the tables of child links generated by stock LaTeX2HTML so we get by Fred Drake · 23 years ago
  70. f0a2ac9 Moved PythonScript to unsupported at Bill Bedford's request. It'll go by Jack Jansen · 23 years ago
  71. de3d060 Typo: destuction --> destruction Reported by Thomas Heller. by Fred Drake · 23 years ago
  72. 2a63a07 further work supporting reading config dialog values form config files. by Steven M. Gava · 23 years ago
  73. f126bcb dynamic option menu widget. by Steven M. Gava · 23 years ago
  74. 485f7b6 further work on loading config dialog values from the config files by Steven M. Gava · 23 years ago
  75. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  76. b016da3 Update. __dict__ assignment done. Reorder remaining "to do" items by by Guido van Rossum · 23 years ago
  77. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  78. 0afde13 Fix two typos, one noted by Noah Spurrier in SF bug #475166, the by Guido van Rossum · 23 years ago
  79. 9f7a539 Add sendall() method, which loops until all data is written or an by Guido van Rossum · 23 years ago
  80. af07b2c Add yet more markup that let's a stylesheet pick out a small bit of the by Fred Drake · 23 years ago
  81. 7f10cce Enforce a bit of markup consistency. by Fred Drake · 23 years ago
  82. 3a2c462 Minor textual adjustment, and style-guide conformance (no use of "iff"). by Fred Drake · 23 years ago
  83. 2539cf5 A fix for SF bug #472560, extra newlines returned by get_param() when by Barry Warsaw · 23 years ago
  84. e674ca7 Added various tidbits. by Jack Jansen · 23 years ago
  85. d970fe4 I went back and figured out the release date for Python 2.2a1. by Barry Warsaw · 23 years ago
  86. 107771a Applying proposed patch for bug #474583, optional support for by Barry Warsaw · 23 years ago
  87. 9cd0efc Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod() by Fred Drake · 23 years ago
  88. 61f7949 Typo: NamedNodeList --> NamedNodeMap by Fred Drake · 23 years ago
  89. a0dfc85 Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck) by Guido van Rossum · 23 years ago
  90. b112481 Ignore the posixfile deprecation warning for the test suite. by Fred Drake · 23 years ago
  91. 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 23 years ago
  92. 847c51a Slightly better conformance to the Python C style guide. by Fred Drake · 23 years ago
  93. af876d7 One more LaTeX-ism that we'd rather ignore. by Fred Drake · 23 years ago
  94. a281665 No need to run make twice here. by Fred Drake · 23 years ago
  95. 0099d8f Update the rules so that changes to the HTML stylesheet cause appropriate by Fred Drake · 23 years ago
  96. 7c4b5fa After discussion with itojun, it was clarified that Tru64 is in error, by Martin v. Löwis · 23 years ago
  97. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 23 years ago
  98. 9242a4a Add a warning to the posixfile module stating that it will go away. by Fred Drake · 23 years ago
  99. bc006af Make the deprecation notice use the same form as other such notices. by Fred Drake · 23 years ago
  100. 0559d95 Minor revision of the text. by Fred Drake · 23 years ago