1. 6fb3fde Pytype_GenericAlloc(): round up size so we zap all four bytes of the by Guido van Rossum · 23 years ago
  2. 702ca4f Revert the previous patch to test_pow.py and move the test to test_unary.py by Fred Drake · 23 years ago
  3. d256271 Added a regression test for the negation-of-exponentiation optimization by Fred Drake · 23 years ago
  4. 14ef244 When re-writing a factor containing a unary negation of a literal, only by Fred Drake · 23 years ago
  5. 4b8c0f6 More stuff discovered while writing the simplest of testcases: by Guido van Rossum · 23 years ago
  6. 46add98 Do the int inlining only if the type is really an int, not whenever by Guido van Rossum · 23 years ago
  7. 13228a6 Ah, the joy of writing test cases... by Guido van Rossum · 23 years ago
  8. f71b5fe spurious pop by Jeremy Hylton · 23 years ago
  9. 4042c69 Add news about GC API change. Explain how to upgrade extension modules. by Neil Schemenauer · 23 years ago
  10. 55cdc88 Update documentation for GC API. Closes SF patch #421893. by Neil Schemenauer · 23 years ago
  11. 60250e2 win_getpass(): if sys.stdin is not sys.__stdin__, use by Guido van Rossum · 23 years ago
  12. 8019913 fix for part of bug #453523: disable unmarshalling of code objects in by Michael W. Hudson · 23 years ago
  13. 3c0fc84 Update the links to the FIPS document that defines the Secure Hash by Fred Drake · 23 years ago
  14. 89dfe9e Removed unreachable return to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  15. 6f848c1 Removed an unreachable break statement to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  16. a2c2ae6 Removed unreachable goto statement to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  17. 2f38f81 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  18. 38b88c2 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  19. 34eaf86 Started on the 2.2a2 installer by Jack Jansen · 23 years ago
  20. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago
  21. 6923234 Add a new function imp.lock_held(), and use it to skip test_threaded_import by Tim Peters · 23 years ago
  22. c414187 Safety measures now that str and tuple are subclassable: by Guido van Rossum · 23 years ago
  23. 31bcff8 Make 'super' subclassable. (Not sure how useful this is yet. :-) by Guido van Rossum · 23 years ago
  24. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  25. ae960af Make str and tuple types subclassable. by Guido van Rossum · 23 years ago
  26. 147b13c Make getset subclassable. by Guido van Rossum · 23 years ago
  27. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  28. 5eef77a Make the Py<type>_Check() macro use PyObject_TypeCheck(). by Guido van Rossum · 23 years ago
  29. deb77e8 Squash new compiler wng in debug build. by Tim Peters · 23 years ago
  30. 45c9ae5 gcmodule is now always compiled by Neil Schemenauer · 23 years ago
  31. 7d0e19e gcmodule is now enabled here by Neil Schemenauer · 23 years ago
  32. 43411b5 Make more things internal to this file. Remove by Neil Schemenauer · 23 years ago
  33. cf22946 Always build gcmodule. by Neil Schemenauer · 23 years ago
  34. 69374e4 Flush output more aggressively. This makes things look better if by Neil Schemenauer · 23 years ago
  35. c806c88 Use new GC API. Remove usage of BASICSIZE macros. by Neil Schemenauer · 23 years ago
  36. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  37. fd34369 Remove GC related code. It lives in gcmodule now. by Neil Schemenauer · 23 years ago
  38. 4f4817f Make frames a PyVarObject. Use new GC API. by Neil Schemenauer · 23 years ago
  39. 01b66a8 Remove bogus PyGC_HEAD_SIZE. by Neil Schemenauer · 23 years ago
  40. 74b5ade Change the GC type flag since the API has changed. Allow types using by Neil Schemenauer · 23 years ago
  41. 31ec142 Change the GC type flag since the API has changed. Allow types using by Neil Schemenauer · 23 years ago
  42. 251ead8 Make frames a PyVarObject instead of a PyObject. by Neil Schemenauer · 23 years ago
  43. 9c63e6d Always compile gcmodule. by Neil Schemenauer · 23 years ago
  44. e4685ec Track the block stack more reasonably in order to handle continue in by Jeremy Hylton · 23 years ago
  45. 9263848 Improve stack depth computation for try/except and try/finally by Jeremy Hylton · 23 years ago
  46. 4bd4ddd Add __getitem__() handler for use by visitContinue() by Jeremy Hylton · 23 years ago
  47. 7c10008 Added xx and xxsubtype modules, for completeness and because xxsubtype is used by the test suite. by Jack Jansen · 23 years ago
  48. 028f2d5 Started on release notes and readme for 2.2a2. by Jack Jansen · 23 years ago
  49. 79248aa SF bug [#456252] Python should never stomp on [u]intptr_t. by Tim Peters · 23 years ago
  50. 1936745 Generate SET_LINENO for list and tuple literals when the open paren by Jeremy Hylton · 23 years ago
  51. 7845cf8 Make sure that atoms (Tuple, List, etc.) have lineno attributes by Jeremy Hylton · 23 years ago
  52. 4ba9001 Fix off-by-one errors in code to find depth of stack. by Jeremy Hylton · 23 years ago
  53. 8779787 Workaround by Tim Peters to skip this test if run from test.autotest, by Jack Jansen · 23 years ago
  54. bf77c46 Undo change from list to dict for handling varnames, consts, etc. by Jeremy Hylton · 23 years ago
  55. 5a9ac97 Change default() to use getChildNodes() instead of getChildren() by Jeremy Hylton · 23 years ago
  56. 94afe32 Support // and //= by Jeremy Hylton · 23 years ago
  57. 7abf520 Add support for // and //=. by Jeremy Hylton · 23 years ago
  58. d4be10d Add generator detection to symbol table. by Jeremy Hylton · 23 years ago
  59. e4e9cd4 Modify name conversion to be (hopefully) a bit more efficient. by Jeremy Hylton · 23 years ago
  60. 5477f52 Revise implementations of getChildren() and getChildNodes(). by Jeremy Hylton · 23 years ago
  61. 96d68d5 Add opcodes for floor division and true division (PEP 238) by Jeremy Hylton · 23 years ago
  62. 4de8df9 Add tests for augmented floor division by Jeremy Hylton · 23 years ago
  63. da8db8c Don't include doc string of class in its code child by Jeremy Hylton · 23 years ago
  64. 8aea0cc Now that int is subclassable, have to change a test that tests for by Guido van Rossum · 23 years ago
  65. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  66. e705ef1 Fix super() so that it is usable for static methods (like __new__) as well. by Guido van Rossum · 23 years ago
  67. c16fcdf Make the PyXXX_Check() macros for the numeric types inheritance-aware. by Guido van Rossum · 23 years ago
  68. c51395d GUSI on the Mac creates threads with a default stack size of 20KB, which is by Jack Jansen · 23 years ago
  69. f9dc043 Fix a minor markup typo. by Fred Drake · 23 years ago
  70. 8211237 marshal.c r_long64: When reading a TYPE_INT64 value on a box with 32-bit by Tim Peters · 23 years ago
  71. da21ce3 On Fred's suggestion, convert sprintf() examples to use by Barry Warsaw · 23 years ago
  72. 0ab31b8 Add METH_O and METH_NOARGS change by Andrew M. Kuchling · 23 years ago
  73. 19ef62d pickle.py, load_int(): Match cPickle's just-repaired ability to unpickle by Tim Peters · 23 years ago
  74. 12778e3 load_int: The fallback to long ints was coded in such a way that it by Tim Peters · 23 years ago
  75. 08f9956 Update an email address. by Barry Warsaw · 23 years ago
  76. c6d9581 Note change in fp literal syntax (e.g. "3e-" worked by accident before). by Tim Peters · 23 years ago
  77. 5592e4d Fix a typo in SLOT0 macro for the declaration of cache_str. by Guido van Rossum · 23 years ago
  78. ce129a5 Fix the test again due to fewer calls to __getattr__. by Guido van Rossum · 23 years ago
  79. 2730b13 Finish the previous checkin: also avoid getattr when calling the method by Guido van Rossum · 23 years ago
  80. b5f17f2 Revise comments about TeX & LaTeX for accuracy. This closes SF bug #456222. by Fred Drake · 23 years ago
  81. a5be8ed Fix one test to reflect the change in method lookup policy. by Guido van Rossum · 23 years ago
  82. 6071873 Change in policy: when a slot_tp_xxx function looks for the __xxx__ method, by Guido van Rossum · 23 years ago
  83. 2ac9c3e Make sure the JUMP_ABSOLUTE and POP_BLOCK at the end of a for loop are by Jeremy Hylton · 23 years ago
  84. cbfc855 The "O!" format code should implement an isinstance() test by Guido van Rossum · 23 years ago
  85. 63db7b9 XXX_NAME ops should affect varnames by Jeremy Hylton · 23 years ago
  86. f354575 Generate FOR_ITER-based loops instead of old FOR_LOOP-based loops by Jeremy Hylton · 23 years ago
  87. 318e167 FOR_ITER is a jrel_op() not a plain old def_op() by Jeremy Hylton · 23 years ago
  88. d800cff Added explanation that [...] * n generates shallow copies of [...], so by Fred Drake · 23 years ago
  89. 49a806e Added list of tests expected to be skipped on the mac. by Jack Jansen · 23 years ago
  90. 5cb29a4 Fix a number of minor markup errors, and improve the consistency a bit. by Fred Drake · 23 years ago
  91. 46ccd1d Plant a mention in the description of backreferences of the fact that by Eric S. Raymond · 23 years ago
  92. 8c64a54 Refcount info for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 23 years ago
  93. c86aa57 Documentation for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 23 years ago
  94. 3070ee6 Experimental feature: allow \n as well as \r as newline for text files, by breaking in to the lowlevel I/O system. Can be disabled by defining WITHOUT_UNIX_NEWLINES. by Jack Jansen · 23 years ago
  95. c59e220 Handle private names by Jeremy Hylton · 23 years ago
  96. e7d8322 exceptions was missing from the module list. Added. by Jack Jansen · 23 years ago
  97. 535c524 A quick hack to make the test pass on the Mac (similar to the quick hack by Jack Jansen · 23 years ago
  98. 80ea40d emit SET_LINENO for augmented assignments by Jeremy Hylton · 23 years ago
  99. 2afff32 Many changes -- bug fixes and sundry improvements by Jeremy Hylton · 23 years ago
  100. 9f44815 Fix another test still expecting overflow on big int literals. by Tim Peters · 23 years ago