Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 7199: Documentation made slightly more consistent w.r.t. logging level ↵ | Vinay Sajip | 2009-10-28 | 1 | -1/+1 |
| | | | | enumeration. | ||||
* | Remove variable that is no longer used. | R. David Murray | 2009-10-28 | 1 | -1/+1 |
| | |||||
* | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in _json.c ↵ | Eric Smith | 2009-10-28 | 1 | -1/+5 |
| | | | | as part of short float repr. Change made after consulting with Bob Ippolito. This completes the removal of calls to PyOS_ascii_strtod. | ||||
* | Fix format specifier for MSVC | Mark Dickinson | 2009-10-28 | 1 | -1/+1 |
| | |||||
* | Replace long long with PY_LONG_LONG | Mark Dickinson | 2009-10-28 | 1 | -2/+2 |
| | |||||
* | removed spurious spaces | Tarek Ziadé | 2009-10-28 | 1 | -29/+18 |
| | |||||
* | Fixed #1180: Option to ignore ~/.pydistutils.cfg in Distutils | Tarek Ziadé | 2009-10-27 | 7 | -8/+71 |
| | |||||
* | Make sure every run of test_intern() interns a new string, otherwise that ↵ | Georg Brandl | 2009-10-27 | 1 | -1/+4 |
| | | | | test fails e.g. when some other test in test_builtin fails and it is rerun in verbose mode. | ||||
* | Test long inputs to float | Mark Dickinson | 2009-10-27 | 1 | -0/+5 |
| | |||||
* | Silence gcc warnings when trying to print an off_t using "lld", on platforms | Mark Dickinson | 2009-10-27 | 2 | -3/+14 |
| | | | | where off_t has type long (e.g., 64-bit Linux). | ||||
* | Reduce the probability of refleaks in test_socketserver. | Antoine Pitrou | 2009-10-27 | 1 | -1/+2 |
| | | | | Not completely suppressed though, see issue #7222. | ||||
* | Issue #7218: Fix test_site for win32 | Tarek Ziadé | 2009-10-27 | 2 | -1/+4 |
| | |||||
* | test expect base classes | Benjamin Peterson | 2009-10-27 | 1 | -0/+8 |
| | |||||
* | Reformat the regrtest command-line option help and group the options into ↵ | Georg Brandl | 2009-10-27 | 1 | -20/+35 |
| | | | | sections. | ||||
* | Add a regrtest option to re-run in verbose mode immediately after a test ↵ | Georg Brandl | 2009-10-27 | 2 | -11/+18 |
| | | | | fails, and use that option on the buildbots. | ||||
* | Try to fix transient refleaks in test_distutils. | Antoine Pitrou | 2009-10-27 | 1 | -0/+1 |
| | |||||
* | Fix transient refleaks in test_urllib2_localnet. | Antoine Pitrou | 2009-10-27 | 1 | -2/+10 |
| | |||||
* | Suppress transient refleaks in test_threading. | Antoine Pitrou | 2009-10-27 | 1 | -3/+12 |
| | |||||
* | Suppress transient refleaks in test_smtplib. | Antoine Pitrou | 2009-10-27 | 1 | -4/+20 |
| | |||||
* | Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also ↵ | Eric Smith | 2009-10-27 | 1 | -11/+9 |
| | | | | brings it more in line with py3k. | ||||
* | Suppress transient refleaks in test_file2k. | Antoine Pitrou | 2009-10-27 | 1 | -0/+2 |
| | |||||
* | Fix transient refleak in test_sys. | Antoine Pitrou | 2009-10-27 | 1 | -2/+6 |
| | |||||
* | (Hopefully) suppress transient refleaks in test_httpservers. | Antoine Pitrou | 2009-10-27 | 1 | -0/+2 |
| | |||||
* | Suppress transient refleaks in test_asyncore | Antoine Pitrou | 2009-10-27 | 1 | -25/+29 |
| | |||||
* | Removed PyOS_ascii_atof from ast.c, as mentioned in issue 7117. | Eric Smith | 2009-10-27 | 1 | -6/+6 |
| | |||||
* | Issue #7205: Fix a possible deadlock when using a BZ2File object from ↵ | Antoine Pitrou | 2009-10-27 | 3 | -1/+27 |
| | | | | several threads at once. | ||||
* | Fix a strange mis-edit. | Georg Brandl | 2009-10-27 | 1 | -2/+2 |
| | |||||
* | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in ↵ | Eric Smith | 2009-10-27 | 1 | -8/+4 |
| | | | | stropmodule as part of short float repr. | ||||
* | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in cPickle ↵ | Eric Smith | 2009-10-27 | 1 | -4/+4 |
| | | | | as part of short float repr. | ||||
* | use 'is' instead of id() | Benjamin Peterson | 2009-10-26 | 1 | -8/+7 |
| | |||||
* | Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in | Mark Dickinson | 2009-10-26 | 3 | -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 in | Mark Dickinson | 2009-10-26 | 2 | -37/+24 |
| | | | | | floatobject.c. Also, remove limitation on length of unicode inputs to float(). | ||||
* | Issue #7117: Backport missing pystrtod.h declarations from py3k. | Mark Dickinson | 2009-10-26 | 1 | -0/+5 |
| | |||||
* | Use correct conversion specifier and length modifier when printing an | Mark Dickinson | 2009-10-26 | 2 | -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 Pitrou | 2009-10-26 | 4 | -15/+43 |
| | | | | | | rl_completion_suppress_append. Reported by Mark D. | ||||
* | Finished removing _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 5 | -159/+32 |
| | |||||
* | Issue #7117 (backport py3k float repr) continued: | Mark Dickinson | 2009-10-26 | 1 | -93/+699 |
| | | | | Backport pystrtod.c from py3k. | ||||
* | Continue removing _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -8/+22 |
| | |||||
* | Start to remove _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -22/+36 |
| | |||||
* | Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sum | Mark Dickinson | 2009-10-26 | 1 | -0/+9 |
| | |||||
* | Skip readline tests if readline module is not available. | Mark Dickinson | 2009-10-26 | 1 | -2/+3 |
| | |||||
* | Issue #1087418: Small performance boost for bitwise operations on longs. | Mark Dickinson | 2009-10-25 | 2 | -66/+102 |
| | | | | Initial patch by Gregory Smith; some tweaks added. | ||||
* | Fix a demo. | Georg Brandl | 2009-10-25 | 1 | -10/+4 |
| | |||||
* | Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, ↵ | Eric Smith | 2009-10-24 | 2 | -12/+0 |
| | | | | and it's not declared in any .h file. | ||||
* | Issue #7117: temporarily disable the short float repr while the | Mark Dickinson | 2009-10-24 | 1 | -0/+7 |
| | | | | | pieces are being assembled. To re-enable, define the preprocessor symbol PY_SHORT_FLOAT_REPR | ||||
* | fixed warning and error message | Tarek Ziadé | 2009-10-24 | 5 | -5/+5 |
| | |||||
* | fixed finally state in distutils.test_util | Tarek Ziadé | 2009-10-24 | 1 | -1/+1 |
| | |||||
* | Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode | Tarek Ziadé | 2009-10-24 | 8 | -5/+67 |
| | |||||
* | Issue #7117 (backport py3k float repr) continued: | Mark Dickinson | 2009-10-24 | 3 | -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 account | Mark Dickinson | 2009-10-24 | 2 | -9/+10 |
| |