]> granicus.if.org Git - python/log
python
18 years agoBug #1566800: make sure that EnvironmentError can be called with any
Georg Brandl [Sat, 30 Sep 2006 09:03:42 +0000 (09:03 +0000)]
Bug #1566800: make sure that EnvironmentError can be called with any
number of arguments, as was the case in Python 2.4.

18 years agoPatch #1567691: super() and new.instancemethod() now don't accept
Georg Brandl [Sat, 30 Sep 2006 08:43:30 +0000 (08:43 +0000)]
Patch #1567691: super() and new.instancemethod() now don't accept
keyword arguments any more (previously they accepted them, but didn't
use them).

18 years agoBug #1565661: in webbrowser, split() the command for the default
Georg Brandl [Sat, 30 Sep 2006 07:31:57 +0000 (07:31 +0000)]
Bug #1565661: in webbrowser, split() the command for the default
GNOME browser in case it is a command with args.

18 years agoBug #1567375: a minor logical glitch in example description.
Georg Brandl [Sat, 30 Sep 2006 07:24:48 +0000 (07:24 +0000)]
Bug #1567375: a minor logical glitch in example description.

18 years agowording change
Gregory P. Smith [Sat, 30 Sep 2006 06:08:20 +0000 (06:08 +0000)]
wording change

18 years agoSF bug #1567976 : fix typo
George Yoshida [Sat, 30 Sep 2006 05:14:02 +0000 (05:14 +0000)]
SF bug #1567976 : fix typo

Will backport to 2.5.

18 years agoVery minor grammatical fix in a comment.
Brett Cannon [Thu, 28 Sep 2006 22:10:14 +0000 (22:10 +0000)]
Very minor grammatical fix in a comment.

18 years agoMake examples do error checking on Py_InitModule
Andrew M. Kuchling [Wed, 27 Sep 2006 19:23:05 +0000 (19:23 +0000)]
Make examples do error checking on Py_InitModule

18 years agoAdd news item for rev. 51815
Andrew M. Kuchling [Wed, 27 Sep 2006 16:37:30 +0000 (16:37 +0000)]
Add news item for rev. 51815

18 years agoMake the error message for when the time data and format do not match clearer.
Brett Cannon [Tue, 26 Sep 2006 23:38:24 +0000 (23:38 +0000)]
Make the error message for when the time data and format do not match clearer.

18 years agoAnother crasher.
Armin Rigo [Mon, 25 Sep 2006 15:16:26 +0000 (15:16 +0000)]
Another crasher.

18 years agoFix a bug in traceback.format_exception_only() that led to an error
Georg Brandl [Sun, 24 Sep 2006 12:50:24 +0000 (12:50 +0000)]
Fix a bug in traceback.format_exception_only() that led to an error
being raised when print_exc() was called without an exception set.
In version 2.4, this printed "None", restored that behavior.

18 years agoFix a bug in the parser's future statement handling that led to "with"
Georg Brandl [Sun, 24 Sep 2006 12:35:36 +0000 (12:35 +0000)]
Fix a bug in the parser's future statement handling that led to "with"
not being recognized as a keyword after, e.g., this statement:
from __future__ import division, with_statement

18 years agoFix webbrowser.BackgroundBrowser on Windows.
Georg Brandl [Sun, 24 Sep 2006 10:36:01 +0000 (10:36 +0000)]
Fix webbrowser.BackgroundBrowser on Windows.

18 years agoMake output on test_strptime() be more verbose in face of failure. This is in
Brett Cannon [Sat, 23 Sep 2006 19:53:20 +0000 (19:53 +0000)]
Make output on test_strptime() be more verbose in face of failure.  This is in
hopes that more information will help debug the failing test on HPPA Ubuntu.

18 years agoSF Bug #1563963, add missing word and cleanup first sentance
Neal Norwitz [Sat, 23 Sep 2006 18:11:58 +0000 (18:11 +0000)]
SF Bug #1563963, add missing word and cleanup first sentance

18 years agoRemove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone...
Neal Norwitz [Sat, 23 Sep 2006 04:11:38 +0000 (04:11 +0000)]
Remove extra semi-colons reported by Johnny Lee on python-dev.  Backport if anyone cares.

18 years agoadd boilerplate "What's New" document so the docs will build
Fred Drake [Sat, 23 Sep 2006 00:26:31 +0000 (00:26 +0000)]
add boilerplate "What's New" document so the docs will build

18 years agoMostly revert this file to the same version as before. Only force setting
Neal Norwitz [Fri, 22 Sep 2006 08:47:23 +0000 (08:47 +0000)]
Mostly revert this file to the same version as before.  Only force setting
of PY_FORMAT_SIZE_T to "l" for Mac OSX.  I don't know a better define
to use.  This should get rid of the warnings on other platforms and Mac too.

18 years agoBug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).
Neal Norwitz [Fri, 22 Sep 2006 08:18:10 +0000 (08:18 +0000)]
Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)).

These tests should be improved.  Hopefully this fixes variations when
flipping back and forth between fpdef and fplist.

Backport candidate.

18 years agoFix %zd string formatting on Mac OS X so it prints negative numbers.
Neal Norwitz [Fri, 22 Sep 2006 08:16:26 +0000 (08:16 +0000)]
Fix %zd string formatting on Mac OS X so it prints negative numbers.

In addition to testing positive numbers, verify negative numbers work in configure.
In order to avoid compiler warnings on OS X 10.4, also change the order of the check
for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format
for Py_ssize_t.  This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't
defined at configure time.  Need to verify the buildbot results.

Backport candidate (if everyone thinks this patch can't be improved).

18 years agoadded itertools.count(-n) fix
Jack Diederich [Thu, 21 Sep 2006 20:34:49 +0000 (20:34 +0000)]
added itertools.count(-n) fix

18 years ago* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
Jack Diederich [Thu, 21 Sep 2006 17:50:26 +0000 (17:50 +0000)]
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
  which breaks negative counts
* added test for negative numbers
will backport to 2.5.1

18 years agoFix typo.
Walter Dörwald [Thu, 21 Sep 2006 15:09:55 +0000 (15:09 +0000)]
Fix typo.

18 years agoMake python.vim output more deterministic.
Brett Cannon [Wed, 20 Sep 2006 19:28:35 +0000 (19:28 +0000)]
Make python.vim output more deterministic.

18 years agoAllow exceptions to be directly sliced again
Brett Cannon [Wed, 20 Sep 2006 18:43:13 +0000 (18:43 +0000)]
Allow exceptions to be directly sliced again
(e.g., ``BaseException(1,2,3)[0:2]``).

Discovered in Python 2.5.0 by Thomas Heller and reported to python-dev.  This
should be backported to 2.5 .

18 years agoAccidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
Brett Cannon [Wed, 20 Sep 2006 18:34:28 +0000 (18:34 +0000)]
Accidentally didn't commit Misc/NEWS entry on when __unicode__() was removed
from exceptions.

18 years agoFixes a bug with bsddb.DB.stat where the flags and txn keyword
Gregory P. Smith [Tue, 19 Sep 2006 17:35:04 +0000 (17:35 +0000)]
Fixes a bug with bsddb.DB.stat where the flags and txn keyword
arguments are transposed.  (reported by Louis Zechtzer)
..already committed to release24-maint
..needs committing to release25-maint

18 years agoMake this thing executable.
Guido van Rossum [Mon, 18 Sep 2006 21:36:16 +0000 (21:36 +0000)]
Make this thing executable.

18 years agoTweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version
Ronald Oussoren [Sun, 17 Sep 2006 19:23:27 +0000 (19:23 +0000)]
Tweak Mac/Makefile in to ensure that pythonw gets rebuild when the major version
of python changes (2.5 -> 2.6). Bug #1552935.

18 years agoPort of revision 51902 in release25-maint to the trunk
Ronald Oussoren [Sun, 17 Sep 2006 18:42:53 +0000 (18:42 +0000)]
Port of revision 51902 in release25-maint to the trunk

18 years agoPatch #1557515: Add RLIMIT_SBSIZE.
Martin v. Löwis [Sat, 16 Sep 2006 17:36:37 +0000 (17:36 +0000)]
Patch #1557515: Add RLIMIT_SBSIZE.

18 years agorevise explanation of returns_unicode to reflect bool values
Fred Drake [Fri, 15 Sep 2006 16:11:27 +0000 (16:11 +0000)]
revise explanation of returns_unicode to reflect bool values
and to include the default value
(merged from release25-maint revision 51890)

18 years ago- fix module name in links in formatted documentation
Fred Drake [Fri, 15 Sep 2006 15:18:04 +0000 (15:18 +0000)]
- fix module name in links in formatted documentation
- minor markup cleanup
(forward-ported from release25-maint revision 51888)

18 years agoCorrect elementtree module index entry.
Georg Brandl [Fri, 15 Sep 2006 05:22:24 +0000 (05:22 +0000)]
Correct elementtree module index entry.

18 years agoFix grammar errors and improve clarity.
Ka-Ping Yee [Fri, 15 Sep 2006 00:34:19 +0000 (00:34 +0000)]
Fix grammar errors and improve clarity.

18 years agoRewrite help message to remove some of the parentheticals. (There were a lot of...
Andrew M. Kuchling [Thu, 14 Sep 2006 11:28:50 +0000 (11:28 +0000)]
Rewrite help message to remove some of the parentheticals.  (There were a lot of them.)

18 years agoMake --help mention that -v can be supplied multiple times
Andrew M. Kuchling [Thu, 14 Sep 2006 11:22:18 +0000 (11:22 +0000)]
Make --help mention that -v can be supplied multiple times

18 years agoMore wordsmithing
Andrew M. Kuchling [Tue, 12 Sep 2006 21:21:51 +0000 (21:21 +0000)]
More wordsmithing

18 years agoSome editing, markup fixes
Andrew M. Kuchling [Tue, 12 Sep 2006 21:09:02 +0000 (21:09 +0000)]
Some editing, markup fixes

18 years agoMarkup typo fix
Andrew M. Kuchling [Tue, 12 Sep 2006 20:50:23 +0000 (20:50 +0000)]
Markup typo fix

18 years agoForward-port 51862: Add sgml_input.html.
Martin v. Löwis [Tue, 12 Sep 2006 19:49:20 +0000 (19:49 +0000)]
Forward-port 51862: Add sgml_input.html.

18 years agoForward-port of rev. 51857:
Georg Brandl [Mon, 11 Sep 2006 09:38:35 +0000 (09:38 +0000)]
Forward-port of rev. 51857:

Building with HP's cc on HP-UX turned up a couple of problems.
_PyGILState_NoteThreadState was declared as static inconsistently.
Make it static as it's not necessary outside of this module.

Some tests failed because errno was reset to 0. (I think the tests
that failed were at least: test_fcntl and test_mailbox).
Ensure that errno doesn't change after a call to Py_END_ALLOW_THREADS.
This only affected debug builds.

18 years agoAdd a "crasher" taken from the sgml bug report referenced in the comment
Neal Norwitz [Mon, 11 Sep 2006 04:32:57 +0000 (04:32 +0000)]
Add a "crasher" taken from the sgml bug report referenced in the comment

18 years agoProperly handle a NULL returned from PyArena_New().
Neal Norwitz [Mon, 11 Sep 2006 04:28:16 +0000 (04:28 +0000)]
Properly handle a NULL returned from PyArena_New().
(Also fix some whitespace)

Klocwork #364.

18 years agoForward port of 51850 from release25-maint branch.
Neal Norwitz [Mon, 11 Sep 2006 04:24:09 +0000 (04:24 +0000)]
Forward port of 51850 from release25-maint branch.

As mentioned on python-dev, reverting patch #1504333 because it introduced
an infinite loop in rev 47154.

This patch also adds a test to prevent the regression.

18 years agoRemove the __unicode__ method from exceptions. Allows unicode() to be called
Brett Cannon [Sat, 9 Sep 2006 07:11:46 +0000 (07:11 +0000)]
Remove the __unicode__ method from exceptions.  Allows unicode() to be called
on exception classes.  Would require introducing a tp_unicode slot to make it
work otherwise.

Fixes bug #1551432 and will be backported.

18 years agoFix typo in example
Andrew M. Kuchling [Fri, 8 Sep 2006 14:05:10 +0000 (14:05 +0000)]
Fix typo in example

18 years agoUse native SQLite types
Andrew M. Kuchling [Fri, 8 Sep 2006 14:03:01 +0000 (14:03 +0000)]
Use native SQLite types

18 years agoUse native SQLite types
Andrew M. Kuchling [Fri, 8 Sep 2006 14:02:45 +0000 (14:02 +0000)]
Use native SQLite types

18 years agoExplain SQLite a bit more clearly
Andrew M. Kuchling [Fri, 8 Sep 2006 13:36:36 +0000 (13:36 +0000)]
Explain SQLite a bit more clearly

18 years agoExplain SQLite a bit more clearly
Andrew M. Kuchling [Fri, 8 Sep 2006 13:35:49 +0000 (13:35 +0000)]
Explain SQLite a bit more clearly

18 years agoAdd missing word
Andrew M. Kuchling [Fri, 8 Sep 2006 13:25:23 +0000 (13:25 +0000)]
Add missing word

18 years agoAdd missing NEWS entry for rev 51803
Nick Coghlan [Fri, 8 Sep 2006 10:04:38 +0000 (10:04 +0000)]
Add missing NEWS entry for rev 51803

18 years agoThe cast function did not accept c_char_p or c_wchar_p instances
Thomas Heller [Thu, 7 Sep 2006 19:09:54 +0000 (19:09 +0000)]
The cast function did not accept c_char_p or c_wchar_p instances
as first argument, and failed with a 'bad argument to internal function'
error message.

18 years agoAnonymous structure fields that have a bit-width specified did not work,
Thomas Heller [Thu, 7 Sep 2006 18:56:28 +0000 (18:56 +0000)]
Anonymous structure fields that have a bit-width specified did not work,
and they gave a strange error message from PyArg_ParseTuple:
    function takes exactly 2 arguments (3 given).

With tests.

18 years agoAdd a warning notice on top of the generated grammar.txt.
Armin Rigo [Thu, 7 Sep 2006 15:06:00 +0000 (15:06 +0000)]
Add a warning notice on top of the generated grammar.txt.

18 years ago[Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout...
Andrew M. Kuchling [Thu, 7 Sep 2006 13:59:38 +0000 (13:59 +0000)]
[Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout on the select()
if an input hook has been defined.  Patch by Richard Boulton.

This select() code is only executed with readline 2.1, or if
READLINE_CALLBACKS is defined.

Backport candidate for 2.5, 2.4, probably earlier versions too.

18 years agoTypo fix
Andrew M. Kuchling [Thu, 7 Sep 2006 13:56:23 +0000 (13:56 +0000)]
Typo fix

18 years agoFix a glaring error and update some version numbers.
Ronald Oussoren [Thu, 7 Sep 2006 12:03:10 +0000 (12:03 +0000)]
Fix a glaring error and update some version numbers.

18 years agoFix the speed regression in inspect.py by adding another cache to speed up getmodule...
Nick Coghlan [Thu, 7 Sep 2006 10:50:34 +0000 (10:50 +0000)]
Fix the speed regression in inspect.py by adding another cache to speed up getmodule(). Patch #1553314

18 years agoFix refcounts and add error checks.
Raymond Hettinger [Thu, 7 Sep 2006 02:42:48 +0000 (02:42 +0000)]
Fix refcounts and add error checks.

18 years agoFixed subprocess bug #1531862 again, after removing tests
Gustavo Niemeyer [Thu, 7 Sep 2006 00:48:33 +0000 (00:48 +0000)]
Fixed subprocess bug #1531862 again, after removing tests
offending buildbot

18 years agoAdd news item for bug fix of SF bug report #1546372.
Marc-André Lemburg [Wed, 6 Sep 2006 20:40:22 +0000 (20:40 +0000)]
Add news item for bug fix of SF bug report #1546372.

18 years agoFix missing import of the types module in logging.config.
Georg Brandl [Wed, 6 Sep 2006 20:05:58 +0000 (20:05 +0000)]
Fix missing import of the types module in logging.config.

18 years agoBug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.
Georg Brandl [Wed, 6 Sep 2006 06:50:05 +0000 (06:50 +0000)]
Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.
Also make sure that every exception class has __module__ set to
'exceptions'.

18 years agowith and as are now keywords. There are some generated files I can't recreate.
Neal Norwitz [Wed, 6 Sep 2006 06:28:06 +0000 (06:28 +0000)]
with and as are now keywords.  There are some generated files I can't recreate.

18 years agoBug #1550983: emit better error messages for erroneous relative
Georg Brandl [Wed, 6 Sep 2006 06:09:31 +0000 (06:09 +0000)]
Bug #1550983: emit better error messages for erroneous relative
imports (if not in package and if beyond toplevel package).

18 years agoBug #1551427: fix a wrong NULL pointer check in the win32 version
Georg Brandl [Wed, 6 Sep 2006 06:03:59 +0000 (06:03 +0000)]
Bug #1551427: fix a wrong NULL pointer check in the win32 version
of os.urandom().

18 years agoRevert 51758 because it broke all the buildbots
Neal Norwitz [Wed, 6 Sep 2006 03:58:34 +0000 (03:58 +0000)]
Revert 51758 because it broke all the buildbots

18 years agoFixing #1531862: Do not close standard file descriptors in the
Gustavo Niemeyer [Wed, 6 Sep 2006 01:58:52 +0000 (01:58 +0000)]
Fixing #1531862: Do not close standard file descriptors in the
subprocess module.

18 years agoUpdate the PCBuild8 solution.
Kristján Valur Jónsson [Tue, 5 Sep 2006 17:58:12 +0000 (17:58 +0000)]
Update the PCBuild8 solution.
Facilitate cross-compilation by having binaries in separate Win32 and x64 directories.
Rationalized configs by making proper use of platforms/configurations.
Remove pythoncore_pgo project.
Add new PGIRelease and PGORelease configurations to perform Profile Guided Optimisation.
Removed I64 support, but this can be easily added by copying the x64 platform settings.

18 years ago[Bug #1526834] Fix crash in pdb when you do 'b f(';
Andrew M. Kuchling [Tue, 5 Sep 2006 13:19:18 +0000 (13:19 +0000)]
[Bug #1526834] Fix crash in pdb when you do 'b f(';
the function name was placed into a regex pattern and the unbalanced paren
caused re.compile() to report an error

18 years ago[Bug #1525469] SimpleXMLRPCServer still uses the sys.exc_{value,type} module-level...
Andrew M. Kuchling [Tue, 5 Sep 2006 13:15:41 +0000 (13:15 +0000)]
[Bug #1525469] SimpleXMLRPCServer still uses the sys.exc_{value,type} module-level globals instead of calling sys.exc_info().  Reported by Russell Warren

18 years agoRearrange example a bit, and show rpartition() when separator is not found
Andrew M. Kuchling [Tue, 5 Sep 2006 13:02:40 +0000 (13:02 +0000)]
Rearrange example a bit, and show rpartition() when separator is not found

18 years agoBug #1552618: change docs of dict.has_key() to reflect recommendation
Georg Brandl [Tue, 5 Sep 2006 12:44:58 +0000 (12:44 +0000)]
Bug #1552618: change docs of dict.has_key() to reflect recommendation
to use "in".

18 years agoFix a typo: 2013 -> 0213
Hye-Shik Chang [Tue, 5 Sep 2006 12:14:57 +0000 (12:14 +0000)]
Fix a typo: 2013 -> 0213

18 years agoFix a few bugs on cjkcodecs found by Oren Tirosh:
Hye-Shik Chang [Tue, 5 Sep 2006 12:07:09 +0000 (12:07 +0000)]
Fix a few bugs on cjkcodecs found by Oren Tirosh:
- gbk and gb18030 codec now handle U+30FB KATAKANA MIDDLE DOT correctly.
- iso2022_jp_2 codec now encodes into G0 for KS X 1001, GB2312
  codepoints to conform the standard.
- iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 2013:2
  codepoints now.

18 years agoM-x untabify
Neal Norwitz [Tue, 5 Sep 2006 04:00:12 +0000 (04:00 +0000)]
M-x untabify

18 years agoAdd a comment about some refactoring. (There's probably more that should be done...
Neal Norwitz [Tue, 5 Sep 2006 03:58:26 +0000 (03:58 +0000)]
Add a comment about some refactoring.  (There's probably more that should be done.)  I will reformat this file in the next checkin due to the inconsistent tabs/spaces.

18 years agoBug #1520864 (again): unpacking singleton tuples in list comprehensions and
Neal Norwitz [Tue, 5 Sep 2006 03:53:08 +0000 (03:53 +0000)]
Bug #1520864 (again): unpacking singleton tuples in list comprehensions and
generator expressions (x for x, in ... ) works again.

Sigh, I only fixed for loops the first time, not list comps and genexprs too.
I couldn't find any more unpacking cases where there is a similar bug lurking.

This code should be refactored to eliminate the duplication.  I'm sure
the listcomp/genexpr code can be refactored.  I'm not sure if the for loop
can re-use any of the same code though.

Will backport to 2.5 (the only place it matters).

18 years agoPatch #1540470, for OpenBSD 4.0. Backport candidate for 2.[34].
Neal Norwitz [Tue, 5 Sep 2006 02:57:01 +0000 (02:57 +0000)]
Patch #1540470, for OpenBSD 4.0.  Backport candidate for 2.[34].

18 years agoAdd a NEWS entry for str.rpartition() change
Neal Norwitz [Tue, 5 Sep 2006 02:36:20 +0000 (02:36 +0000)]
Add a NEWS entry for str.rpartition() change

18 years agoThis was found by Guido AFAIK on p3yk (sic) branch.
Neal Norwitz [Tue, 5 Sep 2006 02:35:08 +0000 (02:35 +0000)]
This was found by Guido AFAIK on p3yk (sic) branch.

18 years agoFix SF #1552093, eval docstring typo (3 ps in mapping)
Neal Norwitz [Tue, 5 Sep 2006 02:25:41 +0000 (02:25 +0000)]
Fix SF #1552093, eval docstring typo (3 ps in mapping)

18 years agoFix SF bug #1546288, crash in dict_equal.
Neal Norwitz [Tue, 5 Sep 2006 02:24:03 +0000 (02:24 +0000)]
Fix SF bug #1546288, crash in dict_equal.

18 years agoAdd missing svn:eol-style property to text files.
Tim Peters [Tue, 5 Sep 2006 02:22:17 +0000 (02:22 +0000)]
Add missing svn:eol-style property to text files.

18 years agoWhitespace normalization.
Tim Peters [Tue, 5 Sep 2006 02:21:19 +0000 (02:21 +0000)]
Whitespace normalization.

18 years ago"Conceptual" merge of rev 51711 from the 2.5 branch.
Tim Peters [Tue, 5 Sep 2006 02:18:09 +0000 (02:18 +0000)]
"Conceptual" merge of rev 51711 from the 2.5 branch.

i_divmod():  As discussed on Python-Dev, changed the overflow
checking to live happily with recent gcc optimizations that
assume signed integer arithmetic never overflows.

This differs from the corresponding change on the 2.5 and 2.4
branches, using a less obscure approach, but one that /may/
tickle platform idiocies in their definitions of LONG_MIN.
The 2.4 + 2.5 change avoided introducing a dependence on
LONG_MIN, at the cost of substantially goofier code.

18 years agoFix endcase for str.rpartition()
Raymond Hettinger [Mon, 4 Sep 2006 15:32:48 +0000 (15:32 +0000)]
Fix endcase for str.rpartition()

18 years agoNEWS entry on trunk for decimal module changes
Nick Coghlan [Sun, 3 Sep 2006 01:20:46 +0000 (01:20 +0000)]
NEWS entry on trunk for decimal module changes

18 years agoTypo fix for decimal docs
Nick Coghlan [Sun, 3 Sep 2006 01:06:07 +0000 (01:06 +0000)]
Typo fix for decimal docs

18 years agoFix final documentation nits before backporting decimal module fixes to 2.5
Nick Coghlan [Sun, 3 Sep 2006 01:02:00 +0000 (01:02 +0000)]
Fix final documentation nits before backporting decimal module fixes to 2.5

18 years agoHmm, this test has failed at least twice recently on the OpenBSD and
Neal Norwitz [Sat, 2 Sep 2006 19:40:19 +0000 (19:40 +0000)]
Hmm, this test has failed at least twice recently on the OpenBSD and
Debian sparc buildbots.  Since this goes through a lot of tests
and hits the disk a lot it could be slow (especially if NFS is involved).
I'm not sure if that's the problem, but printing periodic msgs shouldn't hurt.
The code was stolen from test_compiler.

18 years agoAdd missing word in comment
Neal Norwitz [Sat, 2 Sep 2006 18:51:34 +0000 (18:51 +0000)]
Add missing word in comment

18 years agoFix documentation nits for decimal context managers.
Raymond Hettinger [Sat, 2 Sep 2006 17:07:23 +0000 (17:07 +0000)]
Fix documentation nits for decimal context managers.

18 years agoFurther corrections to the decimal module context management documentation
Nick Coghlan [Sat, 2 Sep 2006 04:04:18 +0000 (04:04 +0000)]
Further corrections to the decimal module context management documentation

18 years agoMake decimal.ContextManager a private implementation detail of decimal.localcontext()
Nick Coghlan [Sat, 2 Sep 2006 03:54:17 +0000 (03:54 +0000)]
Make decimal.ContextManager a private implementation detail of decimal.localcontext()

18 years agoBug #1550714: fix SystemError from itertools.tee on negative value for n.
Neal Norwitz [Sat, 2 Sep 2006 02:58:13 +0000 (02:58 +0000)]
Bug #1550714: fix SystemError from itertools.tee on negative value for n.

Needs backport to 2.5.1 and earlier.

18 years agoBug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to 2.5...
Neal Norwitz [Sat, 2 Sep 2006 02:50:35 +0000 (02:50 +0000)]
Bug #1548092: fix curses.tparm seg fault on invalid input.  Needs backport to 2.5.1 and earlier.