summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-263-17/+36
| | | | | complexobject.c. Also remove length restriction on unicode inputs to the complex constructor.
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-262-37/+24
| | | | | floatobject.c. Also, remove limitation on length of unicode inputs to float().
* Issue #7117: Backport missing pystrtod.h declarations from py3k.Mark Dickinson2009-10-261-0/+5
|
* Use correct conversion specifier and length modifier when printing anMark Dickinson2009-10-262-8/+14
| | | | integer of type off_t. Also, don't assume that long long is available.
* Some platforms have rl_completion_append_character but not ↵Antoine Pitrou2009-10-264-15/+43
| | | | | | rl_completion_suppress_append. Reported by Mark D.
* Finished removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-265-159/+32
|
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-261-93/+699
| | | | Backport pystrtod.c from py3k.
* Continue removing _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-8/+22
|
* Start to remove _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-22/+36
|
* Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sumMark Dickinson2009-10-261-0/+9
|
* Skip readline tests if readline module is not available.Mark Dickinson2009-10-261-2/+3
|
* Issue #1087418: Small performance boost for bitwise operations on longs.Mark Dickinson2009-10-252-66/+102
| | | | Initial patch by Gregory Smith; some tweaks added.
* Fix a demo.Georg Brandl2009-10-251-10/+4
|
* Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, ↵Eric Smith2009-10-242-12/+0
| | | | and it's not declared in any .h file.
* Issue #7117: temporarily disable the short float repr while theMark Dickinson2009-10-241-0/+7
| | | | | pieces are being assembled. To re-enable, define the preprocessor symbol PY_SHORT_FLOAT_REPR
* fixed warning and error messageTarek Ziadé2009-10-245-5/+5
|
* fixed finally state in distutils.test_utilTarek Ziadé2009-10-241-1/+1
|
* Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecodeTarek Ziadé2009-10-248-5/+67
|
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-243-0/+24
| | | | | Add sys.float_repr_style attribute ('short' if short float repr is in used; 'legacy' otherwise).
* Configure check for double rounding should take BASECFLAGS into accountMark Dickinson2009-10-242-9/+10
|
* Remove temporary define from r75653Mark Dickinson2009-10-241-2/+0
|
* #7066 - Fixed distutils.archive_util.make_archive behavior so it restores ↵Tarek Ziadé2009-10-243-5/+25
| | | | the cwd
* Issue #7117 (backport py3k float repr) continued:Mark Dickinson2009-10-248-11/+529
| | | | | | | | | - add double endianness detection to configure script - add configure-time check to see whether we can use inline assembly to get and set x87 control word in configure script - add functions to get and set x87 control word in Python/pymath.c - add pyport.h logic to determine whether it's safe to use the short float repr or not
* Fix compilation error in debug mode.Antoine Pitrou2009-10-241-3/+0
|
* Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept ↵Antoine Pitrou2009-10-242-1/+8
| | | | arbitrary keywords
* Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and ↵Antoine Pitrou2009-10-245-18/+415
| | | | io.StringIO picklable.
* Temporary define to avoid build failureMark Dickinson2009-10-241-0/+2
|
* Issue #7117: Prepare for backport of py3k float repr.Mark Dickinson2009-10-246-0/+2667
| | | | | | | Add the Python/dtoa.c file containing the main algorithms; add corresponding include file and include in Python.h; include license information for Python/dtoa.c; add dtoa.c and dtoa.h to Makefile.
* Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of ↵Antoine Pitrou2009-10-243-6/+17
| | | | io.StringIO and io.BytesIO
* Acknowledge Ned Deily (extensive bug hunting and testing on OS X)Mark Dickinson2009-10-241-0/+1
|
* Fix markup.Georg Brandl2009-10-241-1/+1
|
* Improve some docstrings in the 'warnings' module.Neil Schemenauer2009-10-231-1/+13
|
* Issue #7194: test_thread could try to release an unacquired mutex (and fail).Antoine Pitrou2009-10-231-1/+4
|
* add further note about what's passed to optionxformFred Drake2009-10-231-0/+3
|
* Fix Windows buildbot failureAntoine Pitrou2009-10-231-3/+2
|
* #7188: fix optionxform() docs.Georg Brandl2009-10-231-6/+14
|
* Per the discussion in issue6882, backport the try/finally work that was done ↵Eric Smith2009-10-221-11/+40
| | | | to the py3k version (mostly in r59477, I think).
* Make printout margin important.Georg Brandl2009-10-221-1/+1
|
* Add proper references.Georg Brandl2009-10-221-6/+5
|
* #6977: getopt does not support optional option arguments.Georg Brandl2009-10-221-11/+12
|
* #7156: document curses as Unix-only.Georg Brandl2009-10-221-1/+1
|
* #7035: improve docs of the various <method>_errors() functions, and give ↵Georg Brandl2009-10-222-20/+42
| | | | them docstrings.
* Reorder __slots__ fine print and add a clarification.Georg Brandl2009-10-221-4/+4
|
* #7088: document new functions in signal as Unix-only.Georg Brandl2009-10-221-8/+9
|
* #6324: membership test tries iteration via __iter__.Georg Brandl2009-10-222-5/+16
|
* Use "impl-detail" directive where applicable.Georg Brandl2009-10-2213-84/+114
|
* Fix stylesheet for multi-paragraph impl-details.Georg Brandl2009-10-221-2/+6
|
* Allow short form with text as argument.Georg Brandl2009-10-221-0/+3
|
* Document new directive.Georg Brandl2009-10-221-0/+18
|
* Make it more robust.Georg Brandl2009-10-221-1/+7
|