Commit graph

44590 commits

Author SHA1 Message Date
Georg Brandl
4392b5618f Remove tag. 2010-12-05 11:41:32 +00:00
Georg Brandl
b550308597 Take PyUnicode_TransformDecimalToASCII out of the limited API. 2010-12-05 11:40:48 +00:00
Georg Brandl
5ce0c6f2d1 Tagging 3.2b1. 2010-12-05 09:24:00 +00:00
Raymond Hettinger
e5e1a987b2 Nits and todos 2010-12-05 08:35:21 +00:00
Georg Brandl
3ad46757f4 Apply rest of #10628, and add a few todo comments. 2010-12-05 07:59:29 +00:00
Georg Brandl
724d0895e8 Temporarily disable newly failing test for the release. 2010-12-05 07:51:39 +00:00
Nick Coghlan
7bd5dbe9a0 More fine-grained monitoring of alterations to logging state 2010-12-05 07:17:25 +00:00
Raymond Hettinger
413abbc277 Spelling 2010-12-05 07:06:47 +00:00
Raymond Hettinger
dc2f9b5c98 Update the unittest section. 2010-12-05 07:02:45 +00:00
Nick Coghlan
7d8197516a Issue 10626 investigation: regrtest now checks for alterations to the logging state in the current process (and yes, test_pydoc alters it) 2010-12-05 06:45:03 +00:00
Raymond Hettinger
e5e728babd New string format character. 2010-12-05 06:35:16 +00:00
Raymond Hettinger
d8fae4e6ad Optimization notes. 2010-12-05 05:39:54 +00:00
Hirokazu Yamamoto
26253bb09e Should use posix_error here. 2010-12-05 04:16:47 +00:00
Raymond Hettinger
43b5a857d6 Describe the transform/untranform methods 2010-12-05 04:04:21 +00:00
Raymond Hettinger
dadf93c910 Note the updates to range objects. 2010-12-05 02:56:21 +00:00
Hirokazu Yamamoto
74673513e7 Sorry, I had introduced tab in source code. 2010-12-05 02:48:08 +00:00
Hirokazu Yamamoto
8e9fe9f489 Avoid possible zombi process. 2010-12-05 02:41:46 +00:00
Hirokazu Yamamoto
2668145dbd Now can reproduce the error on AMD64 Windows Server 2008
even where os.symlink is not supported.
2010-12-05 02:04:16 +00:00
Raymond Hettinger
c269ae87c1 Optimization of Timsort. 2010-12-05 01:01:52 +00:00
Raymond Hettinger
a5a3554b4d Start the argparse entry. 2010-12-05 00:39:18 +00:00
Raymond Hettinger
6e35394ed5 Mention itertools.accumulate(). 2010-12-04 23:42:12 +00:00
Raymond Hettinger
6f04adc54b Fill-in stub for concurrent.futures 2010-12-04 22:56:25 +00:00
Raymond Hettinger
d9404b5741 Doc nit. 2010-12-04 20:51:36 +00:00
Georg Brandl
41ea8ae667 Bump to 3.2b1. 2010-12-04 19:09:24 +00:00
Georg Brandl
46402378ca Fix markup errors. 2010-12-04 19:06:18 +00:00
Georg Brandl
bccb8be262 Update suspicious exceptions. 2010-12-04 19:06:14 +00:00
Georg Brandl
b0592a6dcf Update pydoc topics. 2010-12-04 19:01:29 +00:00
Antoine Pitrou
8c30a710e6 Silence compile error 2010-12-04 18:36:03 +00:00
Gregory P. Smith
8c647cd737 clarify the docs and new warning message. 2010-12-04 18:11:44 +00:00
Łukasz Langa
2f0fd0fa4f configparser: mapping protocol access get() handles configparser-specific arguments as well 2010-12-04 17:48:18 +00:00
Éric Araujo
1215915045 Use proper plural forms in argparse (#4391) 2010-12-04 17:31:49 +00:00
Victor Stinner
13d49ee7d6 Issue #10601: sys.displayhook uses 'backslashreplace' error handler on
UnicodeEncodeError.
2010-12-04 17:24:33 +00:00
Eric Smith
44588b45d2 More issue #10624: Add requires_IEEE_754 to __all__. 2010-12-04 17:12:41 +00:00
Georg Brandl
34748cd6a8 Fix test suite to not activate new sigint behavior in pdb. 2010-12-04 17:11:36 +00:00
Georg Brandl
f3fa5685e8 Fix typo. 2010-12-04 17:09:30 +00:00
Georg Brandl
f8b893ec62 Fix accidental checkin. 2010-12-04 16:22:44 +00:00
Georg Brandl
cbc79c76a8 Add display/undisplay pdb commands. 2010-12-04 16:21:42 +00:00
Georg Brandl
44f2b640ff #7245: Add a SIGINT handler on continue in pdb that allows to break a program again by pressing Ctrl-C. 2010-12-04 16:00:47 +00:00
Eric Smith
1ed77f300b Issue 10625: Add tests for negative zeros in complex str and repr. 2010-12-04 15:26:13 +00:00
Eric Smith
3ab08cadae Issue #10624: Use support.requires_IEEE_754 in all appropriate tests. 2010-12-04 15:17:38 +00:00
Martin v. Löwis
932e49e394 Fix PEP number. 2010-12-04 13:49:32 +00:00
Łukasz Langa
535c0773a5 support for checking test coverage added.
70% coverage at the moment (not tragic but needs work).
2010-12-04 13:48:13 +00:00
Eric Smith
f24a0d90a9 Issue #10624: Move requires_IEEE_754 into test.support. I'll fix up other uses of it shortly. 2010-12-04 13:32:18 +00:00
Eric Smith
70099a1555 Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. 2010-12-04 13:27:34 +00:00
Mark Dickinson
7b1bee47ae Use copysign to produce appropriately signed zeros instead of trying to worm around possible compiler optimizations. 2010-12-04 13:14:29 +00:00
Łukasz Langa
2cf9ddb390 configparser: fixed inconsistency where in SafeConfigParser option values
were ensured to be strings but section names and option keys were not.
 Behaviour unchanged for RawConfigParser and ConfigParser.
2010-12-04 12:46:01 +00:00
Mark Dickinson
d2a9b20efa Issue #10596: Fix float.__mod__ to have the same behaviour as
float.__divmod__ with respect to signed zeros.
2010-12-04 12:25:30 +00:00
Hirokazu Yamamoto
7f4bc00d9f I hope this will fix Win2008(x64) buildbot error. 2010-12-04 12:20:57 +00:00
Martin v. Löwis
0d012f284b Expose CompileString, not CompileStringFlags under the
limited API.
2010-12-04 12:00:49 +00:00
Mark Dickinson
66f2623fb2 Remove some unecessary '#ifdef Py_NAN's from floatobject.c 2010-12-04 11:52:58 +00:00