]> granicus.if.org Git - python/log
python
12 years agoIssue #15591 and Issue #11715: silence output of setup.py when make is run with ...
Christian Heimes [Thu, 6 Sep 2012 22:56:56 +0000 (00:56 +0200)]
Issue #15591 and Issue #11715: silence output of setup.py when make is run with -s option.

12 years agoIssue #15591 and Issue #11715: silence output of setup.py when make is run with ...
Christian Heimes [Thu, 6 Sep 2012 22:55:33 +0000 (00:55 +0200)]
Issue #15591 and Issue #11715: silence output of setup.py when make is run with -s option.

12 years agoIssue #15591: run ctypes' configure in quiet mode when setup.py runs silently
Christian Heimes [Thu, 6 Sep 2012 16:03:32 +0000 (18:03 +0200)]
Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently

12 years agoIssue #15591: run ctypes' configure in quiet mode when setup.py runs silently
Christian Heimes [Thu, 6 Sep 2012 16:02:49 +0000 (18:02 +0200)]
Issue #15591: run ctypes' configure in quiet mode when setup.py runs silently

12 years agoAfter the jump in line 1051 unicode_tmp is NULL. Found by Coverity.
Stefan Krah [Thu, 6 Sep 2012 11:02:46 +0000 (13:02 +0200)]
After the jump in line 1051 unicode_tmp is NULL. Found by Coverity.

12 years ago_testbuffer.c: In all current use cases of cmp_structure() dest->format and
Stefan Krah [Thu, 6 Sep 2012 07:42:29 +0000 (09:42 +0200)]
_testbuffer.c: In all current use cases of cmp_structure() dest->format and
src->format are either both NULL or both non-NULL. However, it is safer to
generalize the function. Found by Coverity.

12 years agoadd whatsnew entry for PEP 421
Eric Snow [Thu, 6 Sep 2012 05:19:38 +0000 (22:19 -0700)]
add whatsnew entry for PEP 421

12 years agoIssue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou [Wed, 5 Sep 2012 23:17:42 +0000 (01:17 +0200)]
Issue #13992: The trashcan mechanism is now thread-safe.  This eliminates
sporadic crashes in multi-thread programs when several long deallocator
chains ran concurrently and involved subclasses of built-in container
types.

Note that the trashcan functions are part of the stable ABI, therefore
they have to be kept around for binary compatibility of extensions.

12 years agoIssue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou [Wed, 5 Sep 2012 22:59:49 +0000 (00:59 +0200)]
Issue #13992: The trashcan mechanism is now thread-safe.  This eliminates
sporadic crashes in multi-thread programs when several long deallocator
chains ran concurrently and involved subclasses of built-in container
types.

Because of this change, a couple extension modules compiled for 3.2.4
(those which use the trashcan mechanism, despite it being undocumented)
will not be loadable by 3.2.3 and earlier. However, extension modules
compiled for 3.2.3 and earlier will be loadable by 3.2.4.

12 years agoIssue #15841: The readable(), writable() and seekable() methods of BytesIO
Antoine Pitrou [Wed, 5 Sep 2012 18:13:48 +0000 (20:13 +0200)]
Issue #15841: The readable(), writable() and seekable() methods of BytesIO
and StringIO objects now raise ValueError when the object has been closed.
Patch by Alessandro Moura.

12 years agoIssue #15841: The readable(), writable() and seekable() methods of BytesIO
Antoine Pitrou [Wed, 5 Sep 2012 18:11:49 +0000 (20:11 +0200)]
Issue #15841: The readable(), writable() and seekable() methods of BytesIO
and StringIO objects now raise ValueError when the object has been closed.
Patch by Alessandro Moura.

12 years agoIssue #15855: updated related manual entries.
Alexander Belopolsky [Mon, 3 Sep 2012 21:29:22 +0000 (17:29 -0400)]
Issue #15855: updated related manual entries.

12 years agoIssue #15855: added docstrings for memoryview methods and data descriptors new in...
Alexander Belopolsky [Mon, 3 Sep 2012 20:51:01 +0000 (16:51 -0400)]
Issue #15855: added docstrings for memoryview methods and data descriptors new in 3.3.

12 years agoIssue #15855: added docstrings for memoryview methods and data descriptors (merge...
Alexander Belopolsky [Mon, 3 Sep 2012 20:43:55 +0000 (16:43 -0400)]
Issue #15855: added docstrings for memoryview methods and data descriptors (merge 3.2).

12 years agoIssue #15855: added docstrings for memoryview methods and data descriptors.
Alexander Belopolsky [Mon, 3 Sep 2012 20:29:11 +0000 (16:29 -0400)]
Issue #15855: added docstrings for memoryview methods and data descriptors.

12 years ago#15557,#15447,#15509: webbrowser test suite added.
R David Murray [Mon, 3 Sep 2012 16:52:08 +0000 (12:52 -0400)]
#15557,#15447,#15509: webbrowser test suite added.

Initial patch by Anton Barkovsky, refined a bit by me to further subdivide the
test methods.  Provides tests for the previous two bug fix commits.

12 years ago#15447: Use subprocess.DEVNULL in webbrowser, instead of opening
R David Murray [Mon, 3 Sep 2012 16:44:29 +0000 (12:44 -0400)]
#15447: Use subprocess.DEVNULL in webbrowser, instead of opening

This eliminates a ResourceWarning, since before webbrowser was
explicitly opening os.devnull and then leaving it open.  Tests
to follow.

Patch by Anton Barkovsky.

12 years agoMerge #15509: If %action substitution produces a null string, drop it.
R David Murray [Mon, 3 Sep 2012 16:37:59 +0000 (12:37 -0400)]
Merge #15509: If %action substitution produces a null string, drop it.

Patch by Anton Barkovsky, comment addition by me.

This shows up as a bug in 3.3 because the definition for Chrome
produces such an empty string.  Tests will follow.

12 years ago#15509: If %action substitution produces a null string, drop it.
R David Murray [Mon, 3 Sep 2012 16:30:12 +0000 (12:30 -0400)]
#15509: If %action substitution produces a null string, drop it.

Patch by Anton Barkovsky, comment addition by me.

This showed up as a bug in 3.3 because the definition for Chrome
produced such an empty string.  This fix is tested in 3.3+;
backporting the new test suite is more trouble than it is worth.

12 years agoIssue #15814: Add NEWS entry regarding intended memoryview hashing restrictions
Nick Coghlan [Mon, 3 Sep 2012 11:46:33 +0000 (21:46 +1000)]
Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictions

12 years agomerge 3.2
Benjamin Peterson [Sun, 2 Sep 2012 20:37:09 +0000 (16:37 -0400)]
merge 3.2

12 years agoput * in the normal place
Benjamin Peterson [Sun, 2 Sep 2012 20:36:01 +0000 (16:36 -0400)]
put * in the normal place

12 years agoget rid of ast_error_finish by passing the compiling struct to ast_error
Benjamin Peterson [Sun, 2 Sep 2012 19:04:51 +0000 (15:04 -0400)]
get rid of ast_error_finish by passing the compiling struct to ast_error

12 years agomerge 3.2
Benjamin Peterson [Sun, 2 Sep 2012 18:38:15 +0000 (14:38 -0400)]
merge 3.2

12 years agomove variable decl to the top of the function
Benjamin Peterson [Sun, 2 Sep 2012 18:38:08 +0000 (14:38 -0400)]
move variable decl to the top of the function

12 years agomerge heads
Benjamin Peterson [Sun, 2 Sep 2012 18:25:18 +0000 (14:25 -0400)]
merge heads

12 years agomerge 3.2 (#15846)
Benjamin Peterson [Sun, 2 Sep 2012 18:24:44 +0000 (14:24 -0400)]
merge 3.2 (#15846)

12 years agoprevert ast errors from being normalized before ast_error_finish is called (closes...
Benjamin Peterson [Sun, 2 Sep 2012 18:23:15 +0000 (14:23 -0400)]
prevert ast errors from being normalized before ast_error_finish is called (closes #15846)

12 years agoFix C++-style comment (xlc compilation failure)
Antoine Pitrou [Sun, 2 Sep 2012 15:56:33 +0000 (17:56 +0200)]
Fix C++-style comment (xlc compilation failure)

12 years agoIssue #15814: Documentation: disallow hashing of multi-dimensional memoryviews.
Stefan Krah [Sun, 2 Sep 2012 12:50:56 +0000 (14:50 +0200)]
Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews.

12 years agoMake super() internal errors RuntimeError instead of SystemError (closes #15839)
Benjamin Peterson [Sun, 2 Sep 2012 03:04:38 +0000 (23:04 -0400)]
Make super() internal errors RuntimeError instead of SystemError (closes #15839)

12 years agoClose #14223: Fix window.addch(curses.ACS_HLINE)
Victor Stinner [Sat, 1 Sep 2012 13:00:34 +0000 (15:00 +0200)]
Close #14223: Fix window.addch(curses.ACS_HLINE)

Fix window.addch() of the curses module for special characters like
curses.ACS_HLINE: the Python function addch(int) and addch(bytes) is now
calling the C function waddch()/mvwaddch() (as it was done in Python 3.2),
instead of wadd_wch()/mvwadd_wch(). The Python function addch(str) is still
calling the C function wadd_wch()/mvwadd_wch() if the Python curses is linked
to libncursesw.

12 years agoIssue #15814: Document planned restrictions for memoryview hashes in 3.3.1.
Stefan Krah [Sat, 1 Sep 2012 12:34:45 +0000 (14:34 +0200)]
Issue #15814: Document planned restrictions for memoryview hashes in 3.3.1.

12 years agoAdd missing unit.
Stefan Krah [Sat, 1 Sep 2012 12:27:51 +0000 (14:27 +0200)]
Add missing unit.

12 years agoCompile _decimal without asserts and update benchmark results.
Stefan Krah [Sat, 1 Sep 2012 12:21:22 +0000 (14:21 +0200)]
Compile _decimal without asserts and update benchmark results.

12 years ago#15802: Fix test logic in TestMaildir.test_create_tmp
Petri Lehtinen [Sat, 1 Sep 2012 11:27:24 +0000 (14:27 +0300)]
#15802: Fix test logic in TestMaildir.test_create_tmp

12 years ago#15802: Fix test logic in TestMaildir.test_create_tmp
Petri Lehtinen [Sat, 1 Sep 2012 11:22:36 +0000 (14:22 +0300)]
#15802: Fix test logic in TestMaildir.test_create_tmp

12 years agoMerge #12776,#11839: call argparse type function only once.
R David Murray [Sat, 1 Sep 2012 03:09:34 +0000 (23:09 -0400)]
Merge #12776,#11839: call argparse type function only once.

Before, the type function was called twice in the case where the default
was specified and the argument was given as well.  This was especially
problematic for the FileType type, as a default file would always be
opened, even if a file argument was specified on the command line.

Patch by Arnaud Fontaine, with additional test by Mike Meyer.

12 years ago#12776,#11839: call argparse type function only once.
R David Murray [Sat, 1 Sep 2012 02:45:20 +0000 (22:45 -0400)]
#12776,#11839: call argparse type function only once.

Before, the type function was called twice in the case where the default
was specified and the argument was given as well.  This was especially
problematic for the FileType type, as a default file would always be
opened, even if a file argument was specified on the command line.

Patch by Arnaud Fontaine, with additional test by Mike Meyer.

12 years agoMerge whitespace fix from 3.2.
Trent Nelson [Fri, 31 Aug 2012 21:14:31 +0000 (17:14 -0400)]
Merge whitespace fix from 3.2.

12 years agoRemove trailing whitespace in order to silence warnings on HP-UX.
Trent Nelson [Fri, 31 Aug 2012 21:11:39 +0000 (17:11 -0400)]
Remove trailing whitespace in order to silence warnings on HP-UX.

12 years agoIssue #15828: Don't try to close a file if imp.find_module() doesn't
Brett Cannon [Fri, 31 Aug 2012 15:31:20 +0000 (11:31 -0400)]
Issue #15828: Don't try to close a file if imp.find_module() doesn't
return one.

12 years agoIssue #15828: Restore support for C extension modules in imp.load_module()
Nick Coghlan [Fri, 31 Aug 2012 14:13:45 +0000 (00:13 +1000)]
Issue #15828: Restore support for C extension modules in imp.load_module()

12 years agoIssue #15825: fix typo in OrderedDict docs.
Andrew Svetlov [Fri, 31 Aug 2012 10:55:11 +0000 (13:55 +0300)]
Issue #15825: fix typo in OrderedDict docs.

Patch by Mike Hoy.

12 years agoIssue #15825: fix typo in OrderedDict docs.
Andrew Svetlov [Fri, 31 Aug 2012 10:54:54 +0000 (13:54 +0300)]
Issue #15825: fix typo in OrderedDict docs.

Patch by Mike Hoy.

12 years agoIssue #15819: Fix out-of-tree builds from a readonly source.
Trent Nelson [Thu, 30 Aug 2012 14:52:38 +0000 (14:52 +0000)]
Issue #15819: Fix out-of-tree builds from a readonly source.

12 years agoBlock 78809:62044cd5b19b (Issue #15819) from 3.2.
Trent Nelson [Thu, 30 Aug 2012 14:36:15 +0000 (14:36 +0000)]
Block 78809:62044cd5b19b (Issue #15819) from 3.2.

12 years agoIssue #15819: Fix out-of-tree builds from a readonly source.
Trent Nelson [Thu, 30 Aug 2012 14:32:02 +0000 (14:32 +0000)]
Issue #15819: Fix out-of-tree builds from a readonly source.

12 years agoCloses #10650: Deprecate the watchexp parameter of Decimal.quantize().
Stefan Krah [Thu, 30 Aug 2012 10:33:55 +0000 (12:33 +0200)]
Closes #10650: Deprecate the watchexp parameter of Decimal.quantize().

12 years agoIssue #15724: Add versionchanged tags to the memoryview documentation.
Stefan Krah [Thu, 30 Aug 2012 10:09:09 +0000 (12:09 +0200)]
Issue #15724: Add versionchanged tags to the memoryview documentation.

12 years agoIssue #15800: fix the closing of input / output files when gzip is used as a script.
Antoine Pitrou [Wed, 29 Aug 2012 22:30:14 +0000 (00:30 +0200)]
Issue #15800: fix the closing of input / output files when gzip is used as a script.

12 years agoIssue #15800: fix the closing of input / output files when gzip is used as a script.
Antoine Pitrou [Wed, 29 Aug 2012 22:29:24 +0000 (00:29 +0200)]
Issue #15800: fix the closing of input / output files when gzip is used as a script.

12 years agoAdd missing comma.
Ezio Melotti [Wed, 29 Aug 2012 14:52:06 +0000 (17:52 +0300)]
Add missing comma.

12 years agoAdd missing comma.
Ezio Melotti [Wed, 29 Aug 2012 14:50:42 +0000 (17:50 +0300)]
Add missing comma.

12 years agomove entry to the correct version
Benjamin Peterson [Wed, 29 Aug 2012 12:04:11 +0000 (08:04 -0400)]
move entry to the correct version

12 years agoIssue #15785: Modify window.get_wch() API of the curses module: return a
Victor Stinner [Tue, 28 Aug 2012 23:40:57 +0000 (01:40 +0200)]
Issue #15785: Modify window.get_wch() API of the curses module: return a
character for most keys, and an integer for special keys, instead of always
returning an integer. So it is now possible to distinguish special keys like
keypad keys.

12 years agomerge heads
Benjamin Peterson [Tue, 28 Aug 2012 22:02:18 +0000 (18:02 -0400)]
merge heads

12 years agomerge 3.2 (#15801)
Benjamin Peterson [Tue, 28 Aug 2012 22:01:45 +0000 (18:01 -0400)]
merge 3.2 (#15801)

12 years agouse the stricter PyMapping_Check (closes #15801)
Benjamin Peterson [Tue, 28 Aug 2012 21:55:35 +0000 (17:55 -0400)]
use the stricter PyMapping_Check (closes #15801)

12 years agoIssue #15784: Modify OSError.__str__() to better distinguish between
Richard Oudkerk [Tue, 28 Aug 2012 18:33:26 +0000 (19:33 +0100)]
Issue #15784: Modify OSError.__str__() to better distinguish between
errno error numbers and Windows error numbers.

12 years agoIssue #15794: Relax a test case due to the deadlock detection's conservativeness.
Antoine Pitrou [Tue, 28 Aug 2012 18:10:18 +0000 (20:10 +0200)]
Issue #15794: Relax a test case due to the deadlock detection's conservativeness.

12 years ago- fix paste error (whitespace) from previous commit
Matthias Klose [Tue, 28 Aug 2012 17:08:42 +0000 (19:08 +0200)]
- fix paste error (whitespace) from previous commit

12 years ago- fix paste error (whitespace) from previous commit
Matthias Klose [Tue, 28 Aug 2012 17:07:38 +0000 (19:07 +0200)]
- fix paste error (whitespace) from previous commit

12 years ago- Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.
Matthias Klose [Tue, 28 Aug 2012 17:00:01 +0000 (19:00 +0200)]
- Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.

12 years ago- Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.
Matthias Klose [Tue, 28 Aug 2012 16:55:07 +0000 (18:55 +0200)]
- Issue #15591: Fix parsing MAKEFLAGS in the sharedmods target.

12 years ago#11964: Document a change in v3.2 to the json indent parameter
Petri Lehtinen [Tue, 28 Aug 2012 09:34:09 +0000 (12:34 +0300)]
#11964: Document a change in v3.2 to the json indent parameter

12 years ago#11964: Document a change in v3.2 to the json indent parameter
Petri Lehtinen [Tue, 28 Aug 2012 04:08:44 +0000 (07:08 +0300)]
#11964: Document a change in v3.2 to the json indent parameter

12 years agoIssue #15781: Fix two small race conditions in import's module locking.
Antoine Pitrou [Mon, 27 Aug 2012 22:24:52 +0000 (00:24 +0200)]
Issue #15781: Fix two small race conditions in import's module locking.

12 years agoMerge: Fix a JSON doc typo
Petri Lehtinen [Mon, 27 Aug 2012 17:27:51 +0000 (20:27 +0300)]
Merge: Fix a JSON doc typo

12 years agoFix a JSON doc typo
Petri Lehtinen [Mon, 27 Aug 2012 17:27:30 +0000 (20:27 +0300)]
Fix a JSON doc typo

12 years ago#15788: merge with 3.2.
Ezio Melotti [Mon, 27 Aug 2012 07:03:23 +0000 (10:03 +0300)]
#15788: merge with 3.2.

12 years ago#15788: fix broken links in subprocess doc. Patch by Chris Rebert.
Ezio Melotti [Mon, 27 Aug 2012 07:00:05 +0000 (10:00 +0300)]
#15788: fix broken links in subprocess doc.  Patch by Chris Rebert.

12 years agoFix typo.
Ezio Melotti [Sun, 26 Aug 2012 04:33:10 +0000 (07:33 +0300)]
Fix typo.

12 years agoMerge in changes from 3.3.0 release clone.
Georg Brandl [Sat, 25 Aug 2012 19:33:56 +0000 (21:33 +0200)]
Merge in changes from 3.3.0 release clone.

12 years agoPost-release updates.
Georg Brandl [Sat, 25 Aug 2012 19:33:08 +0000 (21:33 +0200)]
Post-release updates.

12 years agoDelete Misc/NEWS record for reverted #15776.
Andrew Svetlov [Sat, 25 Aug 2012 11:22:07 +0000 (14:22 +0300)]
Delete Misc/NEWS record for reverted #15776.

12 years agoAdded tag v3.3.0rc1 for changeset 8bb5c7bc46ba
Georg Brandl [Sat, 25 Aug 2012 10:16:59 +0000 (12:16 +0200)]
Added tag v3.3.0rc1 for changeset 8bb5c7bc46ba

12 years agoBump to 3.3.0rc1. v3.3.0rc1
Georg Brandl [Sat, 25 Aug 2012 10:16:37 +0000 (12:16 +0200)]
Bump to 3.3.0rc1.

12 years agoUpdate pydoc topics and suspicious markup file.
Georg Brandl [Sat, 25 Aug 2012 10:14:59 +0000 (12:14 +0200)]
Update pydoc topics and suspicious markup file.

12 years agoFix issue 13370: Ensure that ctypes works on Mac OS X when Python is
Ronald Oussoren [Sat, 25 Aug 2012 09:24:00 +0000 (11:24 +0200)]
Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is
  compiled using the clang compiler

(merge from 3.2)

12 years agoFix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using...
Ronald Oussoren [Sat, 25 Aug 2012 09:19:14 +0000 (11:19 +0200)]
Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler

12 years agomerge with 3.2
Georg Brandl [Sat, 25 Aug 2012 08:12:47 +0000 (10:12 +0200)]
merge with 3.2

12 years agoFix wrong way of adding Error information in shutil.copytree.
Georg Brandl [Sat, 25 Aug 2012 08:11:57 +0000 (10:11 +0200)]
Fix wrong way of adding Error information in shutil.copytree.

12 years agoClose #15573: use value-based memoryview comparisons (patch by Stefan Krah)
Nick Coghlan [Sat, 25 Aug 2012 07:59:50 +0000 (17:59 +1000)]
Close #15573: use value-based memoryview comparisons (patch by Stefan Krah)

12 years agoUpdate various OS X README files for 3.3.0.
Ned Deily [Sat, 25 Aug 2012 02:57:33 +0000 (19:57 -0700)]
Update various OS X README files for 3.3.0.

12 years agoIssue #15316: Let exceptions raised during imports triggered by the
Brett Cannon [Fri, 24 Aug 2012 22:25:59 +0000 (18:25 -0400)]
Issue #15316: Let exceptions raised during imports triggered by the
fromlist of __import__ propagate.

The problem previously was that if something listed in fromlist didn't
exist then that's okay. The fix for that was too broad in terms of
catching ImportError.

The trick with the solution to this issue is that the proper
refactoring of import thanks to importlib doesn't allow for a way to
distinguish (portably) between an ImportError because finders couldn't
find a loader, or a loader raised the exception. In Python 3.4 the
hope is to introduce a new exception (e.g. ModuleNotFound) to make it
clean to differentiate why ImportError was raised.

12 years agoNull merge from 3.2
Mark Dickinson [Fri, 24 Aug 2012 19:32:24 +0000 (20:32 +0100)]
Null merge from 3.2

12 years agoRemove overeager test (don't depend on the sign of a nan; cf. issue #14521)
Mark Dickinson [Fri, 24 Aug 2012 19:31:33 +0000 (20:31 +0100)]
Remove overeager test (don't depend on the sign of a nan;  cf. issue #14521)

12 years agoReverted change to venv initialisation.
Vinay Sajip [Fri, 24 Aug 2012 19:01:02 +0000 (20:01 +0100)]
Reverted change to venv initialisation.

12 years agoNull merge
Mark Dickinson [Fri, 24 Aug 2012 18:51:32 +0000 (19:51 +0100)]
Null merge

12 years agoRemove incorrect lines (meant for cdecimal) from recently added Decimal tests.
Mark Dickinson [Fri, 24 Aug 2012 18:51:00 +0000 (19:51 +0100)]
Remove incorrect lines (meant for cdecimal) from recently added Decimal tests.

12 years agoNull merge from 3.2.
Mark Dickinson [Fri, 24 Aug 2012 18:40:25 +0000 (19:40 +0100)]
Null merge from 3.2.

12 years agoIssue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
Mark Dickinson [Fri, 24 Aug 2012 18:32:13 +0000 (19:32 +0100)]
Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.

12 years agoIssue #13072: The array module's 'u' format code is now deprecated and
Stefan Krah [Fri, 24 Aug 2012 18:14:12 +0000 (20:14 +0200)]
Issue #13072: The array module's 'u' format code is now deprecated and
will be removed in Python 4.0.

12 years agoMerge
Antoine Pitrou [Fri, 24 Aug 2012 17:51:09 +0000 (19:51 +0200)]
Merge

12 years agoIssue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
Mark Dickinson [Fri, 24 Aug 2012 17:53:10 +0000 (18:53 +0100)]
Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.

12 years agoAdd glossary references
Antoine Pitrou [Fri, 24 Aug 2012 17:50:43 +0000 (19:50 +0200)]
Add glossary references

12 years agoAdd glossary references
Antoine Pitrou [Fri, 24 Aug 2012 17:49:08 +0000 (19:49 +0200)]
Add glossary references

12 years agoMerge
Antoine Pitrou [Fri, 24 Aug 2012 17:47:02 +0000 (19:47 +0200)]
Merge

12 years agoIssue #2051: Tweak last commit for this issue to pass in mode instead
Brett Cannon [Fri, 24 Aug 2012 17:48:39 +0000 (13:48 -0400)]
Issue #2051: Tweak last commit for this issue to pass in mode instead
of source path to set_data() and make the new argument private until
possible API changes can be discussed more thoroughly in Python 3.4.