summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-053-16/+28
* Remove unused variable.Georg Brandl2009-05-051-1/+0
* #5929: fix signedness warning.Georg Brandl2009-05-051-1/+1
* Fix issue 5890: (property subclass shadows __doc__ string) by insertingR. David Murray2009-05-041-16/+23
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-184/+240
* There's no %A in Python 2.x!Walter Dörwald2009-05-031-1/+1
* Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): CallWalter Dörwald2009-05-031-48/+32
* Eliminate some locale-dependent calls to isspace and tolower.Mark Dickinson2009-05-032-10/+10
* Remove unnecessary uses of context in PyGetSetDef. See issue #5880.Mark Dickinson2009-05-031-10/+15
* Remove unnecessary use of context for long getters.Mark Dickinson2009-05-021-10/+15
* Keep py3k and trunk code in sync.Eric Smith2009-05-021-0/+4
* #5889: remove comma at the end of a list that some C compilers don't like.Georg Brandl2009-05-011-1/+1
* Issue #1588: Add complex.__format__.Eric Smith2009-04-302-49/+371
* Remove format_float and use _PyOS_double_to_string instead.Mark Dickinson2009-04-291-82/+13
* Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k....Eric Smith2009-04-273-266/+44
* Backport r71967 changes from py3k to trunk.Mark Dickinson2009-04-261-60/+21
* Reset errno before both calls to PyOS_ascii_strtod, not just one.Mark Dickinson2009-04-261-2/+2
* Issue #4971: Fix titlecase for characters that are their ownMartin v. Löwis2009-04-261-6/+1
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-253-19/+10
* Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic inWalter Dörwald2009-04-251-2/+2
* Fix typo in complex parsing code; expand tests.Mark Dickinson2009-04-251-1/+1
* fix a segfault when setting __class__ in __del__ #5283Benjamin Peterson2009-04-251-0/+6
* Fix missing 'return NULL'Mark Dickinson2009-04-241-1/+1
* Issue #5816:Mark Dickinson2009-04-241-164/+158
* Fixed issue 5782: formatting with commas didn't work if no specifier type cod...Eric Smith2009-04-221-0/+1
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-223-443/+676
* Issue #3166: Make long -> float (and int -> float) conversionsMark Dickinson2009-04-202-27/+220
* make errors consistentBenjamin Peterson2009-04-191-2/+2
* initialize weakref some weakref typesBenjamin Peterson2009-04-191-0/+6
* many more types to initialize (I had to expose some of them)Benjamin Peterson2009-04-183-6/+48
* initalize -> initializeBenjamin Peterson2009-04-181-4/+4
* try to initalize all builtin types with PyType_Ready to avoid problems like #...Benjamin Peterson2009-04-182-16/+68
* rename internal bytes_ functions to bytearrayBenjamin Peterson2009-04-181-153/+153
* "not subscriptable" should be a bit more understandable than "unsubscriptable".Georg Brandl2009-04-181-1/+1
* call __float__ on str subclasses #5759Benjamin Peterson2009-04-151-1/+3
* Fixed incorrect object passed into format_float_internal(). This was resultin...Eric Smith2009-04-131-1/+1
* Whitespace normalization.Georg Brandl2009-04-051-8/+8
* #5615: make it possible to configure --without-threads again.Georg Brandl2009-04-051-0/+6
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-023-4/+842
* sys.long_info attributes should be ints, not longsMark Dickinson2009-04-021-2/+4
* Fix a wrong struct field assignment (docstring as closure).Georg Brandl2009-03-311-1/+1
* Issue #532631: Apply floatformat changes to unicodeobject.cMark Dickinson2009-03-291-0/+9
* Issue #532631: Add paranoid check to avoid potential buffer overflowMark Dickinson2009-03-291-1/+10
* Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 testMark Dickinson2009-03-293-3/+3
* The tracking statistics were actually too pessimisticAntoine Pitrou2009-03-232-3/+4
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-232-1/+135
* Issue #5512: speed up the long division algorithm for Python longs.Mark Dickinson2009-03-231-94/+152
* There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead.Hirokazu Yamamoto2009-03-211-1/+1
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-201-0/+49
* fix strange errors when setting attributes on tracebacks #4034Benjamin Peterson2009-03-181-1/+11