- 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 15 years ago
- 009ae86 Avoid signed overflow in some xrange calculations, and extend by Mark Dickinson · 15 years ago
- c45a0cf grant list.index() a more informative error message #7252 by Benjamin Peterson · 15 years ago
- e2caf1f prevent a rather unlikely segfault by Benjamin Peterson · 15 years ago
- c04c7c5 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 15 years ago
- 8568b19 Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in by Mark Dickinson · 15 years ago
- c1bdf89 Finished removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 15 years ago
- cfaf79c Start to remove _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 15 years ago
- 8d87dc0 Issue #1087418: Small performance boost for bitwise operations on longs. by Mark Dickinson · 15 years ago
- 8c3fb39 Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, and it's not declared in any .h file. by Eric Smith · 15 years ago
- 97a57ec rewrite for style, clarify, and comments by Benjamin Peterson · 15 years ago
- 3c67afa whitespace by Benjamin Peterson · 15 years ago
- b327258 Removed usage of unsafe PyFloat_AsString. by Eric Smith · 15 years ago
- 08133af Issue #7142: Fix uses of unicode in memoryview objects by Mark Dickinson · 15 years ago
- 196b092 only clear a module's __dict__ if the module is the only one with a reference to it #7140 by Benjamin Peterson · 15 years ago
- 9d10974 Fix missing semicolon by Mark Dickinson · 15 years ago
- 9b4e582 #7116: str.join() takes an iterable. by Georg Brandl · 15 years ago
- 5c92d43 #7112: Fix compilation warning in unicodetype_db.h by Amaury Forgeot d'Arc · 15 years ago
- beaf6a0 Issue #7084: Fix a (very unlikely) crash when printing a list from one by Antoine Pitrou · 15 years ago
- d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 15 years ago
- 71adc93 Style/consistency/nano-optimization nit: replace occurrences of by Mark Dickinson · 15 years ago
- b331802 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
- 02ca57c http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
- 4b9d473 Issue #6713: Improve decimal int -> string conversions. Thanks Gawain by Mark Dickinson · 15 years ago
- a9a7611 #6994: fix typo in enumerate docstring by Ezio Melotti · 15 years ago
- 40ee861 Silence MSVC compiler warnings. by Mark Dickinson · 15 years ago
- dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 15 years ago
- 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 15 years ago
- 4fe0335 use macros by Benjamin Peterson · 15 years ago
- e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 15 years ago
- aa2adc8 Issue #6713: Improve performance of str(n) and repr(n) for integers n by Mark Dickinson · 15 years ago
- 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 15 years ago
- 1f4fc09 Fix potential signed-overflow bug in _PyLong_Format; also fix by Mark Dickinson · 15 years ago
- 752a2da Remove redundant assignment by Mark Dickinson · 15 years ago
- 135a7cf Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hagen Fürstenau. by Mark Dickinson · 15 years ago
- c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 15 years ago
- 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 15 years ago
- 2fdd58a Silence gcc 'comparison always false' warning by Mark Dickinson · 15 years ago
- 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 15 years ago
- 5c4a5d2 Issue 6330: Fix --enable-unicode=ucs4. by Eric Smith · 15 years ago
- c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 15 years ago
- e94a826 Sync trunk and py3k versions of string formatting. Will manually merge into py3k. by Eric Smith · 15 years ago
- 9119fbc clarify by Benjamin Peterson · 15 years ago
- ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 15 years ago
- 24d9175 must use _PyThreadState_Current so it isn't checked for NULL #6530 by Benjamin Peterson · 15 years ago
- fd00916 Grow the allocated buffer in PyUnicode_EncodeUTF7 to avoid buffer overrun. by Alexandre Vassalotti · 15 years ago
- 1bf4765 only order comparisons are removed in py3k #6119 by Benjamin Peterson · 15 years ago
- 5c3dd9a Issue #6368: Fixed unused variable warning on Unix. by Hirokazu Yamamoto · 15 years ago
- a3c5609 Issue #4856: Remove checks for win NT. by Hirokazu Yamamoto · 15 years ago
- 595f7a5 #2016 Fix a crash in function call when the **kwargs dictionary is mutated by Amaury Forgeot d'Arc · 15 years ago
- 62641e9 Issue 6329: Fix iteration for memoryviews. by Raymond Hettinger · 15 years ago
- bf9ec9b add underscores by Benjamin Peterson · 15 years ago
- af01c03 Remove unused macro. by Georg Brandl · 15 years ago
- 55bd1ef Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini. by Alexandre Vassalotti · 15 years ago
- 18187e2 #6224: s/JPython/Jython/, and remove one link to a module nine years old. by Georg Brandl · 15 years ago
- 064a381 use the offical api by Benjamin Peterson · 15 years ago
- 25de0dd Fix compilation error with gcc 4.3.2 by Antoine Pitrou · 15 years ago
- b02ceda #4547: When debugging a very large function, it was not always by Amaury Forgeot d'Arc · 15 years ago
- d11f7fc Uninitialized file type would lead to __exit__ lookup failure when site.py by Antoine Pitrou · 15 years ago
- 578a228 Issue 5982: Classmethod and staticmethod expose wrapped function with __func__. by Raymond Hettinger · 15 years ago
- 1afec5d plug ref leak by Benjamin Peterson · 15 years ago
- 39d43b4 correctly handle descrs with __missing__ by Benjamin Peterson · 15 years ago
- 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
- 655d835 Issue #6042: by Jeffrey Yasskin · 15 years ago
- 4b94b19 Issue 6089: str.format raises SystemError. by Eric Smith · 15 years ago
- a4e0efa Issue #5829: don't raise OverflowError for complex('1e500'). Backport of r72803. by Mark Dickinson · 15 years ago
- c8d30fe Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of by Jeffrey Yasskin · 15 years ago
- 61328ee While I was modifying test_trace, it threw an exception when I accidentally by Jeffrey Yasskin · 15 years ago
- 50626db Issue #6044: remove confusing wording from complex -> integer and by Mark Dickinson · 15 years ago
- b24bb27 Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more. by Hirokazu Yamamoto · 15 years ago
- a27dbc6 completely ignore old-style stuff for type checking overloading by Benjamin Peterson · 15 years ago
- 94eaba7 deal with old-style classes in issubclass and isinstance by Benjamin Peterson · 15 years ago
- fb6fb06 properly lookup __instancecheck__ and __subclasscheck__ by Benjamin Peterson · 15 years ago
- b1d4585 Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. by Mark Dickinson · 15 years ago
- ceea163 clear error state properly by Benjamin Peterson · 15 years ago
- a7dc949 ignore AttributeErrors for classic classes by Benjamin Peterson · 15 years ago
- 784d455 *sigh* deal with instances correctly by Benjamin Peterson · 15 years ago
- 0a32f9c can't handle classic classes here by Benjamin Peterson · 15 years ago
- 3f3d36b ignore classic classes by Benjamin Peterson · 15 years ago
- af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 15 years ago
- 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 15 years ago
- f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
- 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 15 years ago
- 3a9930d this is now a bound method by Benjamin Peterson · 15 years ago
- 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 15 years ago
- a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
- cecdc9c Remove unused variable. by Georg Brandl · 16 years ago
- ba68a99 #5929: fix signedness warning. by Georg Brandl · 16 years ago
- 7ba8e1c Fix issue 5890: (property subclass shadows __doc__ string) by inserting by R. David Murray · 16 years ago
- 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 16 years ago
- 342c8db There's no %A in Python 2.x! by Walter Dörwald · 16 years ago
- ed960ac Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call by Walter Dörwald · 16 years ago
- 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 16 years ago
- 85e269b Remove unnecessary uses of context in PyGetSetDef. See issue #5880. by Mark Dickinson · 16 years ago
- d4b5c98 Remove unnecessary use of context for long getters. (Related to issue #5880). by Mark Dickinson · 16 years ago
- 27f204d Keep py3k and trunk code in sync. by Eric Smith · 16 years ago
- ca87fa5 #5889: remove comma at the end of a list that some C compilers don't like. by Georg Brandl · 16 years ago
- 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
- df108ca Remove format_float and use _PyOS_double_to_string instead. by Mark Dickinson · 16 years ago
- cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 16 years ago