summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* test expect base classesBenjamin Peterson2009-10-271-0/+8
|
* Reformat the regrtest command-line option help and group the options into ↵Georg Brandl2009-10-271-20/+35
| | | | sections.
* Add a regrtest option to re-run in verbose mode immediately after a test ↵Georg Brandl2009-10-272-11/+18
| | | | fails, and use that option on the buildbots.
* Try to fix transient refleaks in test_distutils.Antoine Pitrou2009-10-271-0/+1
|
* Fix transient refleaks in test_urllib2_localnet.Antoine Pitrou2009-10-271-2/+10
|
* Suppress transient refleaks in test_threading.Antoine Pitrou2009-10-271-3/+12
|
* Suppress transient refleaks in test_smtplib.Antoine Pitrou2009-10-271-4/+20
|
* Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also ↵Eric Smith2009-10-271-11/+9
| | | | brings it more in line with py3k.
* Suppress transient refleaks in test_file2k.Antoine Pitrou2009-10-271-0/+2
|
* Fix transient refleak in test_sys.Antoine Pitrou2009-10-271-2/+6
|
* (Hopefully) suppress transient refleaks in test_httpservers.Antoine Pitrou2009-10-271-0/+2
|
* Suppress transient refleaks in test_asyncoreAntoine Pitrou2009-10-271-25/+29
|
* Removed PyOS_ascii_atof from ast.c, as mentioned in issue 7117.Eric Smith2009-10-271-6/+6
|
* Issue #7205: Fix a possible deadlock when using a BZ2File object from ↵Antoine Pitrou2009-10-273-1/+27
| | | | several threads at once.
* Fix a strange mis-edit.Georg Brandl2009-10-271-2/+2
|
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in ↵Eric Smith2009-10-271-8/+4
| | | | stropmodule as part of short float repr.
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in cPickle ↵Eric Smith2009-10-271-4/+4
| | | | as part of short float repr.
* use 'is' instead of id()Benjamin Peterson2009-10-261-8/+7
|
* 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
|