- 7e3d961 PyUnicode_EncodeUTF8: squash compiler wng. The difference of two by Tim Peters · 23 years ago
- a4eb14b Patch #495401: Count number of required bytes for encoding UTF-8 before by Martin v. Löwis · 23 years ago
- 24ea8d3 Fix SF bug #505315: Make free and cell vars show up consistently in locals(). by Jeremy Hylton · 23 years ago
- 08d8215 _PyObject_DebugMallocStats(): Added some potentially expensive internal by Tim Peters · 23 years ago
- 64d80c9 PyObject_Malloc: make a tiny bit faster for platforms where malloc(0) by Tim Peters · 23 years ago
- 3e12071 Remove some long-disabled debugging boilerplate. by Tim Peters · 23 years ago
- 2b85897 type_get_doc(): Squash compiler wng about incompatible ptr types. by Tim Peters · 23 years ago
- 6ca7d41 SF bug 542984. by Guido van Rossum · 23 years ago
- e8fc640 SF bug 544647. by Guido van Rossum · 23 years ago
- 7766091 Whitespace normalization and fold some long lines. by Guido van Rossum · 23 years ago
- 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 23 years ago
- 3aa3fc4 Remove 'const' from local variable declaration in string_zfill() -- it by Guido van Rossum · 23 years ago
- 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
- 69cf3c7 Deprecate % as well. The message for deprecation of //, % and divmod by Guido van Rossum · 23 years ago
- 9ec4c78 SF bug #543387. by Guido van Rossum · 23 years ago
- b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 23 years ago
- 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 23 years ago
- 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 23 years ago
- 5961042 Fold long lines. (Walter, please take note! :-) by Guido van Rossum · 23 years ago
- 0e87118 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. by Tim Peters · 23 years ago
- b7ba743 SF bug 543148: Memory leak with stackframes + inspect. by Tim Peters · 23 years ago
- 018b0eb Partially implement SF feature request 444708. by Guido van Rossum · 23 years ago
- 8a8cdfd Small anal correctness tweaks: by Tim Peters · 23 years ago
- e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 23 years ago
- 85cc1c4 _PyObject_DebugRealloc(): rewritten to let the underlying realloc do by Tim Peters · 23 years ago
- f539c68 _PyObject_DebugDumpAddress(): clarify an output message. by Tim Peters · 23 years ago
- f6fb501 PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_ by Tim Peters · 23 years ago
- af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 23 years ago
- d2560cd Move PyObject_Malloc and PyObject_Free here from object.c. Remove by Neil Schemenauer · 23 years ago
- bdf0eed Move PyObject_Malloc and PyObject_Free to obmalloc.c. by Neil Schemenauer · 23 years ago
- 58aa861 Remove PyMalloc_*. by Neil Schemenauer · 23 years ago
- 09a2ae5 Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. by Neil Schemenauer · 23 years ago
- 626d774 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
- 7465ad2 Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 23 years ago
- 510492e Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del. by Neil Schemenauer · 23 years ago
- 9acae5a Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 23 years ago
- 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
- aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
- 6189b89 PyObject_GC_Del and PyObject_Del can now be used as a function designators. by Neil Schemenauer · 23 years ago
- 52aefc8 SF bug 542181: Realloc behavior by Tim Peters · 23 years ago
- 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 23 years ago
- ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 23 years ago
- 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 23 years ago
- 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 23 years ago
- 7f7666f isatty() should return a bool. by Guido van Rossum · 23 years ago
- 49f2681 Minor improvements to the stats output dump, including adding commas to by Tim Peters · 23 years ago
- 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 23 years ago
- 6b8ab74 Don't inherit tp_new! This is a retraction of half of the previous by Guido van Rossum · 23 years ago
- cc8fe04 Inherit tp_new and tp_is_gc. by Guido van Rossum · 23 years ago
- ffdd22f Repair an incomprehensible comment. by Tim Peters · 23 years ago
- 16bcb6b _PyMalloc_DebugDumpStats(): vastly improved the output, and it now by Tim Peters · 23 years ago
- e70ddf3 Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensive by Tim Peters · 23 years ago
- c334df5 A much revised version of SF patch 514662, by Naofumi Honda. This by Guido van Rossum · 23 years ago
- bfc2e5e Clarifying code rearrangement and comments by David Abrahams. I've by Guido van Rossum · 23 years ago
- b7265db _PyMalloc_Realloc(): removed a now-pointless cast. by Tim Peters · 23 years ago
- 84c1b97 _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about by Tim Peters · 23 years ago
- 645a22e As Neal pointed out, bool_print was an order of magnitude too complex. by Guido van Rossum · 23 years ago
- 5f82036 Oops. Here are the new files. My apologies. by Guido van Rossum · 23 years ago
- 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
- cd874ed Fix the names of the classmethod and staticmethod constructors as passed to by Fred Drake · 23 years ago
- d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 23 years ago
- 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 23 years ago
- 6169f09 Fixed errors in two comments. by Tim Peters · 23 years ago
- 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 23 years ago
- 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 23 years ago
- 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 23 years ago
- 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 23 years ago
- 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 23 years ago
- 4c5be0c Fixed an error in a new assert. by Tim Peters · 23 years ago
- b1da050 Fixed a typo in a new comment. by Tim Peters · 23 years ago
- 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 23 years ago
- 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 23 years ago
- c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 23 years ago
- 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 23 years ago
- 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 23 years ago
- 8deda70 Eliminate DONT_SHARE_SHORT_STRINGS. by Tim Peters · 23 years ago
- df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 23 years ago
- 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 23 years ago
- 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 23 years ago
- d97a1c0 Lots of changes: by Tim Peters · 23 years ago
- 1f7df35 Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. by Tim Peters · 23 years ago
- f589c05 If the GC is enabled then don't use the ob_type pointer to create a list by Neil Schemenauer · 23 years ago
- bd02b14 Add missing "void" to function. by Neil Schemenauer · 23 years ago
- ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 23 years ago
- d1139e0 PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere by Tim Peters · 23 years ago
- 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 23 years ago
- 38a8916 Remove weakref free list. This has the side effect of fixing a memory by Neil Schemenauer · 23 years ago
- e990c79 Add missing methods iterkeys, itervalues and iteritems to dict-proxy objects. by Walter Dörwald · 23 years ago
- 8c07722 Fix whitespace. by Walter Dörwald · 23 years ago
- e085017 _PyMalloc_DebugRealloc(): simplify decl of "fresh". by Tim Peters · 23 years ago
- 62c06ba Minor code cleanup -- no semantic changes. by Tim Peters · 23 years ago
- 3a204a7 Grow the string buffer at a mildly exponential rate for the getc version by Neil Schemenauer · 23 years ago
- ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 23 years ago
- ed19b88 Check in (hopefully) corrected version of last change. by Neil Schemenauer · 23 years ago
- ce7fb9b Just whitespace fiddling. by Tim Peters · 23 years ago
- 1221c0a Build obmalloc.c directly instead of #include'ing from object.c. by Tim Peters · 23 years ago
- 12a6d94 Undo last commit. It's causing the tests to file. by Neil Schemenauer · 23 years ago
- 558ba52 Remove malloc hooks. by Neil Schemenauer · 23 years ago
- 398b9f6 Disallow open()ing of directories. Closes SF bug 487277. by Neil Schemenauer · 23 years ago
- dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 23 years ago