- 9b8de84 Backported r55839 and r61350 by Martin v. Löwis · 17 years ago
- 38ce9c2 backport the security fix part of r67246 by Benjamin Peterson · 17 years ago
- b7cfda1 - Issue #2587: In the C API, PyString_FromStringAndSize() takes a signed size by Matthias Klose · 17 years ago
- b93d7d5 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 17 years ago
- 46b3a79 Backport r65182. This change modified from using the unsigned max value by Neal Norwitz · 17 years ago
- c8ed4ff Backport of r60793: by Martin v. Löwis · 17 years ago
- 1e42ab6 Backport trunk revision 53527: by Thomas Wouters · 19 years ago
- 0af9b87 Backport rev 51262 from trunk -- squashes a compiler warning on Windows by Tim Peters · 19 years ago
- 2b37ea4 Backport of the pieces of trunk rev 46589 relevant to by Tim Peters · 19 years ago
- 2fafa25 [Partial backport of r45947 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- e0235ae [Backport r42951 | guido.van.rossum] by Andrew M. Kuchling · 19 years ago
- 78754c1 [Backport r43695 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 3e35669 [Backport r50679 | neal.norwitz. This is the last Klocwork bug to be by Andrew M. Kuchling · 19 years ago
- 32f378b [Backport r50681 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 6d0bc3e [Backport r51246 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 9788095 [Partial backport of r51218 | neal.norwitz -- the changes to ast.c, symtable.c, by Andrew M. Kuchling · 19 years ago
- 8a28c16 [Backport r50743 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 1af9f68 [Backport r51248 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- b2d0f34 A review of overflow-detecting code in the 2.4 branch. by Armin Rigo · 19 years ago
- 98041d7 Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
- 59e0e1e [Backport r51230 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- b1d7043 [Backport r50779 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 5cf2fb9 [Backport r50683 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- 9169792 [Backport r50680 | neal.norwitz] by Andrew M. Kuchling · 19 years ago
- c6994f2 [Backport rev. 42545 by georg.brandl] by Andrew M. Kuchling · 19 years ago
- 26acb2c [Backport rev. 51669 by brett.cannon] by Andrew M. Kuchling · 19 years ago
- ceb4914 [Backport rev. 47171 by neal.norwitz] by Andrew M. Kuchling · 19 years ago
- adf8a1d Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 19 years ago
- 942f75d [Backport rev. 46878 by neal.norwitz] by Andrew M. Kuchling · 19 years ago
- ab68637 [Backport rev. 39743 by lemburg] by Andrew M. Kuchling · 19 years ago
- e63dab5 Merge rev 51711 from the 2.5 branch. by Tim Peters · 19 years ago
- 79ba8e5 Backport rev 51448: by Georg Brandl · 19 years ago
- f6f89e6 memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 19 years ago
- 588b0e2 SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 19 years ago
- 04e38d9 Put method-wrappers into trashcan. Fixes #927248. by Martin v. Löwis · 19 years ago
- 53730fe Backport of r47061. by Armin Rigo · 19 years ago
- df43ce3 Classic class that defined ``def __coerce__(self, other): return other, self`` by Brett Cannon · 19 years ago
- fd827cb Fix bug introduced in rev. 46807 where variable was not declared at top of block. by Brett Cannon · 19 years ago
- 7afe7fe Backport of fix of bug #532646 for new-style classes. by Brett Cannon · 19 years ago
- cbbe647 Don't crash on Py_UNICODE values < 0. Fixes #1454485. by Martin v. Löwis · 19 years ago
- 9109341 Backport: Patch #1488312, Fix memory alignment problem on SPARC in unicode. by Neal Norwitz · 19 years ago
- 337c143 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
- af55db9 Bug #1177964: make file iterator raise MemoryError on too big files by Georg Brandl · 19 years ago
- cb9051a after discussions with perky, reverted fix for Bug #1379994: Builtin by Anthony Baxter · 19 years ago
- 55dd2b4 Fix the refleak from test_unicode. by Neal Norwitz · 19 years ago
- 022a55c update - still some old .cvsignore files lying around by Anthony Baxter · 19 years ago
- d9ca66f Backport: Fix missing NULL checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 19 years ago
- 9165680 Backport 43022: by Neal Norwitz · 19 years ago
- 2f014f8 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 19 years ago
- 361cd4b Backport r42894: SF #1444030 Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
- 0b61a45 Backported from r41842. by Armin Rigo · 20 years ago
- a3b5e99 Fix SF #1412837, compile failed with Watcom compiler by Neal Norwitz · 20 years ago
- 7fb3aa7 Backport: by Neal Norwitz · 20 years ago
- cb92b45 Bug #1379994: Fix *unicode_escape codecs to encode r'\' as r'\\' by Hye-Shik Chang · 20 years ago
- cff9837 Backport checkin: Fix leaked reference to None. by Walter Dörwald · 20 years ago
- c2b4acf Backport: SF bug #1331563 ] string_subscript doesn't check for failed PyMem_Malloc. by Neal Norwitz · 20 years ago
- b693c1c - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 20 years ago
- 39871c8 backport patch [ 1118729 ] Error in representation of complex numbers(again) by Georg Brandl · 20 years ago
- fd8e017 Backport checkin: by Walter Dörwald · 20 years ago
- 66e75ac Disallow keyword arguments for type constructors that don't use them by Georg Brandl · 20 years ago
- 9314d32 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 20 years ago
- ab29419 Teach set modules to correctly compute s-=s and s^=s as the empty set. by Raymond Hettinger · 20 years ago
- 787b4c5 * SF bug #1257731: Fix logic in set.__contains__(), set.remove(), by Raymond Hettinger · 20 years ago
- 7f94414 backporting fix by tim_one: by Georg Brandl · 20 years ago
- b3d5871 Backport: by Georg Brandl · 20 years ago
- 8f7dce6 SF patch #1200018: Restore GC support to set objects by Raymond Hettinger · 20 years ago
- d855c58 fix int.__divmod__.__doc__ by Anthony Baxter · 20 years ago
- 9e4b2e7 SF bug #1183742: PyDict_Copy() can return non-NULL value on error by Raymond Hettinger · 20 years ago
- 21f8987 Backport: by Michael W. Hudson · 20 years ago
- 4cf2704 SF bug #1770766: weakref proxy has incorrect __nonzero__ behavior. by Raymond Hettinger · 20 years ago
- ace3f61 Convert "__init__ should return None" from an exception to a warning. by Raymond Hettinger · 20 years ago
- 2a06df6 SF bug #1155938: Missing None check for __init__(). by Raymond Hettinger · 20 years ago
- 77c8402 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 20 years ago
- 8ed7e2e Backport: Fix by Michael W. Hudson · 21 years ago
- 738a70a Bug #1079011: Incorrect error message (somewhat) by Raymond Hettinger · 21 years ago
- fe09fa2 Backport fixes for bugs #1086555 and #1085744. by Raymond Hettinger · 21 years ago
- a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 21 years ago
- 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 21 years ago
- f8e74b1 If close() fails in file_dealloc, then print an error message to by Peter Astrand · 21 years ago
- ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 21 years ago
- 89a3946 Wrote down the invariants of some common objects whose structure is by Armin Rigo · 21 years ago
- 561fbf1 SF bug #1054139: serious string hashing error in 2.4b1 by Raymond Hettinger · 21 years ago
- 204bd6d Applied patch for [ 1047269 ] Buffer overwrite in PyUnicode_AsWideChar. by Marc-André Lemburg · 21 years ago
- fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 21 years ago
- 6429a47 Use Py_CLEAR(). Add unrelated test. by Raymond Hettinger · 21 years ago
- aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 21 years ago
- a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 21 years ago
- 927a57f Ensure negative offsets cannot be passed to buffer(). When composing by Neil Schemenauer · 21 years ago
- fb6ba07 Fix buffer offset calculation (need to compute it before changing by Neil Schemenauer · 21 years ago
- e1c69b3 float_richcompare(): Use the new Py_IS_NAN macro to ensure that, on by Tim Peters · 21 years ago
- 307fa78 SF bug #513866: Float/long comparison anomaly. by Tim Peters · 21 years ago
- f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 21 years ago
- 729d47d Patch #1024670: Support int objects in PyLong_AsUnsignedLong[Mask]. by Martin v. Löwis · 21 years ago
- 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 21 years ago
- 6543b45 Initialize sep and seplen to suppress warning from gcc. by Skip Montanaro · 21 years ago
- ca0d2cb Add a missing line continuation character. by Thomas Heller · 21 years ago
- 1fd00a1 Make the word "module" appear in the error string for calling the by Michael W. Hudson · 21 years ago
- 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 21 years ago
- 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 21 years ago
- 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 21 years ago