]> granicus.if.org Git - python/log
python
12 years agoIssue #15677: Document that zlib and gzip accept a compression level of 0 to mean...
Nadeem Vawda [Sun, 11 Nov 2012 13:14:47 +0000 (14:14 +0100)]
Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'.

Patch by Brian Brazil.

12 years agoIssue #15677: Document that zlib and gzip accept a compression level of 0 to mean...
Nadeem Vawda [Sun, 11 Nov 2012 13:04:14 +0000 (14:04 +0100)]
Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'.

Patch by Brian Brazil.

12 years agoFixes issue #16140: The subprocess module no longer double closes its
Gregory P. Smith [Sun, 11 Nov 2012 09:38:18 +0000 (01:38 -0800)]
Fixes issue #16140: The subprocess module no longer double closes its
child subprocess.PIPE parent file descriptors on child error prior to
exec().

This would lead to race conditions in multithreaded programs where
another thread opened a file reusing the fd which was then closed out
from beneath it by the errant second close.

12 years agoFixes issue #16140: The subprocess module no longer double closes its
Gregory P. Smith [Sun, 11 Nov 2012 09:37:02 +0000 (01:37 -0800)]
Fixes issue #16140: The subprocess module no longer double closes its
child subprocess.PIPE parent file descriptors on child error prior to
exec().

This would lead to race conditions in multithreaded programs where
another thread opened a file reusing the fd which was then closed out
from beneath it by the errant second close.

12 years agoRemove the subprocess "bad exception data" warning (formerly a print!)
Gregory P. Smith [Sun, 11 Nov 2012 08:04:52 +0000 (00:04 -0800)]
Remove the subprocess "bad exception data" warning (formerly a print!)
all together and just include the repr of the data in the exception
itself instead of the useless string "Unknown".

This code path is unlikely to even be possible to take given the
nature of the pipe it gets subprocess data from.

12 years agoRemove the subprocess "bad exception data" warning (formerly a print!)
Gregory P. Smith [Sun, 11 Nov 2012 08:04:13 +0000 (00:04 -0800)]
Remove the subprocess "bad exception data" warning (formerly a print!)
all together and just include the repr of the data in the exception
itself instead of the useless string "Unknown".

This code path is unlikely to even be possible to take given the
nature of the pipe it gets subprocess data from.

12 years agoRename a local variable for readability and change a "this can't
Gregory P. Smith [Sun, 11 Nov 2012 07:33:56 +0000 (23:33 -0800)]
Rename a local variable for readability and change a "this can't
happen" print() call into a RuntimeWarning as it should've been in the
first place.  Because nothing should ever cause unexpected stdout output.

12 years agoRename a local variable for readability and change a "this can't
Gregory P. Smith [Sun, 11 Nov 2012 07:33:17 +0000 (23:33 -0800)]
Rename a local variable for readability and change a "this can't
happen" print() call into a RuntimeWarning as it should've been in the
first place.  Because nothing should ever cause unexpected stdout output.

12 years agoFixes issue #16327: The subprocess module no longer leaks file descriptors
Gregory P. Smith [Sun, 11 Nov 2012 06:33:23 +0000 (22:33 -0800)]
Fixes issue #16327: The subprocess module no longer leaks file descriptors
used for stdin/stdout/stderr pipes to the child when fork() fails.

12 years agoFixes issue #16327: The subprocess module no longer leaks file descriptors
Gregory P. Smith [Sun, 11 Nov 2012 06:32:22 +0000 (22:32 -0800)]
Fixes issue #16327: The subprocess module no longer leaks file descriptors
used for stdin/stdout/stderr pipes to the child when fork() fails.

12 years agonull merge
Gregory P. Smith [Sun, 11 Nov 2012 05:08:35 +0000 (21:08 -0800)]
null merge

12 years agomove note to the right section
Gregory P. Smith [Sun, 11 Nov 2012 05:07:04 +0000 (21:07 -0800)]
move note to the right section

12 years agoFixes issue #14396: Handle the odd rare case of waitpid returning 0
Gregory P. Smith [Sun, 11 Nov 2012 05:06:18 +0000 (21:06 -0800)]
Fixes issue #14396: Handle the odd rare case of waitpid returning 0
when not expected in subprocess.Popen.wait().

12 years agoFixes issue #14396: Handle the odd rare case of waitpid returning 0 when
Gregory P. Smith [Sun, 11 Nov 2012 04:52:29 +0000 (20:52 -0800)]
Fixes issue #14396: Handle the odd rare case of waitpid returning 0 when
not expected in subprocess.Popen.wait().

12 years agoFixes issue #9535: Fix pending signals that have been received but not
Gregory P. Smith [Sun, 11 Nov 2012 04:33:39 +0000 (20:33 -0800)]
Fixes issue #9535: Fix pending signals that have been received but not
yet handled by Python to not persist after os.fork() in the child process.

12 years agoFixes issue #9535: Fix pending signals that have been received but not
Gregory P. Smith [Sun, 11 Nov 2012 04:33:07 +0000 (20:33 -0800)]
Fixes issue #9535: Fix pending signals that have been received but not
yet handled by Python to not persist after os.fork() in the child process.

12 years agoIssue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previo...
Nadeem Vawda [Sun, 11 Nov 2012 02:16:44 +0000 (03:16 +0100)]
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory.

Patch by Serhiy Storchaka.

12 years agoIssue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previo...
Nadeem Vawda [Sun, 11 Nov 2012 02:15:32 +0000 (03:15 +0100)]
Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory.

Patch by Serhiy Storchaka.

12 years agoIssue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressob...
Nadeem Vawda [Sun, 11 Nov 2012 01:21:22 +0000 (02:21 +0100)]
Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush().

Additionally, fix a bug where a MemoryError in allocating a bytes object could
leave the decompressor object in an invalid state (with its unconsumed_tail
member being NULL).

Patch by Serhiy Storchaka.

12 years agoIssue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressob...
Nadeem Vawda [Sun, 11 Nov 2012 01:14:36 +0000 (02:14 +0100)]
Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush().

Additionally, fix a bug where a MemoryError in allocating a bytes object could
leave the decompressor object in an invalid state (with its unconsumed_tail
member being NULL).

Patch by Serhiy Storchaka.

12 years agoIssue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_soc...
Antoine Pitrou [Sun, 11 Nov 2012 00:27:33 +0000 (01:27 +0100)]
Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket().
Original patch by Jeff McNeil.

12 years agoIssue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_soc...
Antoine Pitrou [Sun, 11 Nov 2012 00:25:36 +0000 (01:25 +0100)]
Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket().
Original patch by Jeff McNeil.

12 years agoFix test_urllib broken by my previous commits. The assumptions it was
Gregory P. Smith [Sat, 10 Nov 2012 23:12:55 +0000 (15:12 -0800)]
Fix test_urllib broken by my previous commits.  The assumptions it was
testing were added as part of the issue10050 change that caused the
wrong behavior in the first place.  now all test cases agree on the
behavior.

12 years agoAccept Unicode legacy strings in the Decimal constructor.
Stefan Krah [Sat, 10 Nov 2012 22:09:04 +0000 (23:09 +0100)]
Accept Unicode legacy strings in the Decimal constructor.

12 years agoFixes issue #16409: The reporthook callback made by the legacy
Gregory P. Smith [Sat, 10 Nov 2012 21:43:44 +0000 (13:43 -0800)]
Fixes issue #16409: The reporthook callback made by the legacy
urllib.request.urlretrieve API now properly supplies a constant
non-zero block_size as it did in Python 3.2 and 2.7.  This matches the
behavior of urllib.request.URLopener.retrieve.

12 years agoMerge from 3.2: adjust set and frozenset function docs (issue #16436).
Chris Jerdonek [Sat, 10 Nov 2012 02:58:06 +0000 (18:58 -0800)]
Merge from 3.2: adjust set and frozenset function docs (issue #16436).

12 years agoLink set and frozenset function docs to their class definitions (issue #16436).
Chris Jerdonek [Sat, 10 Nov 2012 02:57:32 +0000 (18:57 -0800)]
Link set and frozenset function docs to their class definitions (issue #16436).

12 years agoMerge from 3.2: improve FAQ link in documentation (for issue #16435).
Chris Jerdonek [Sat, 10 Nov 2012 01:53:14 +0000 (17:53 -0800)]
Merge from 3.2: improve FAQ link in documentation (for issue #16435).

12 years agoImprove FAQ link in documentation (for issue #16435).
Chris Jerdonek [Sat, 10 Nov 2012 01:52:30 +0000 (17:52 -0800)]
Improve FAQ link in documentation (for issue #16435).

12 years ago#13301: merge with 3.2.
Ezio Melotti [Fri, 9 Nov 2012 10:51:03 +0000 (11:51 +0100)]
#13301: merge with 3.2.

12 years ago#13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py. Patch...
Ezio Melotti [Fri, 9 Nov 2012 10:46:19 +0000 (11:46 +0100)]
#13301: use ast.literal_eval() instead of eval() in Tools/i18n/msgfmt.py.  Patch by Serhiy Storchaka.

12 years ago#16440: merge with 3.2.
Ezio Melotti [Thu, 8 Nov 2012 23:09:10 +0000 (01:09 +0200)]
#16440: merge with 3.2.

12 years ago#16440: fix exception type and clarify example.
Ezio Melotti [Thu, 8 Nov 2012 23:08:25 +0000 (01:08 +0200)]
#16440: fix exception type and clarify example.

12 years agoMerge issue #16439: Fix markup in example for stdtypes.
Andrew Svetlov [Thu, 8 Nov 2012 15:27:39 +0000 (17:27 +0200)]
Merge issue #16439: Fix markup in example for stdtypes.

Thanks to Yongzhi Pan.

12 years agoIssue #16439: Fix markup in example for stdtypes.
Andrew Svetlov [Thu, 8 Nov 2012 15:26:53 +0000 (17:26 +0200)]
Issue #16439: Fix markup in example for stdtypes.

Thanks to Yongzhi Pan.

12 years agoMerge issue #16435: Link in tutorial now points to python3 FAQ.
Andrew Svetlov [Thu, 8 Nov 2012 14:11:22 +0000 (16:11 +0200)]
Merge issue #16435: Link in tutorial now points to python3 FAQ.

Thanks to Yongzhi Pan from docs@

12 years agoIssue #16435: Link in tutorial now points to python3 FAQ.
Andrew Svetlov [Thu, 8 Nov 2012 14:10:49 +0000 (16:10 +0200)]
Issue #16435: Link in tutorial now points to python3 FAQ.

Thanks to Yongzhi Pan from docs@

12 years agoIssue #16431: Finally, consider all permutations.
Stefan Krah [Thu, 8 Nov 2012 10:17:29 +0000 (11:17 +0100)]
Issue #16431: Finally, consider all permutations.

12 years ago#16433: merge with 3.2.
Ezio Melotti [Thu, 8 Nov 2012 09:09:13 +0000 (11:09 +0200)]
#16433: merge with 3.2.

12 years ago#16433: fix docstring of assertNotEqual.
Ezio Melotti [Thu, 8 Nov 2012 09:08:39 +0000 (11:08 +0200)]
#16433: fix docstring of assertNotEqual.

12 years ago#11481: merge with 3.2.
Ezio Melotti [Thu, 8 Nov 2012 09:06:01 +0000 (11:06 +0200)]
#11481: merge with 3.2.

12 years ago#11481: update copyreg docs and add example.
Ezio Melotti [Thu, 8 Nov 2012 09:04:57 +0000 (11:04 +0200)]
#11481: update copyreg docs and add example.

12 years agoMerge heads.
Ezio Melotti [Thu, 8 Nov 2012 08:11:22 +0000 (10:11 +0200)]
Merge heads.

12 years ago#10385: merge with 3.2.
Ezio Melotti [Thu, 8 Nov 2012 08:09:06 +0000 (10:09 +0200)]
#10385: merge with 3.2.

12 years ago#10385: use the mod role in subprocess docs.
Ezio Melotti [Thu, 8 Nov 2012 08:07:10 +0000 (10:07 +0200)]
#10385: use the mod role in subprocess docs.

12 years agoIssue #16431: Also fix the opposite direction.
Stefan Krah [Wed, 7 Nov 2012 22:47:19 +0000 (23:47 +0100)]
Issue #16431: Also fix the opposite direction.

12 years agoIssue #16431: Use the type information when constructing a Decimal subtype
Stefan Krah [Wed, 7 Nov 2012 22:12:25 +0000 (23:12 +0100)]
Issue #16431: Use the type information when constructing a Decimal subtype
from a Decimal argument.

12 years agoIssue #15001: fix segfault on "del sys.module['__main__']"
Hynek Schlawack [Wed, 7 Nov 2012 08:07:22 +0000 (09:07 +0100)]
Issue #15001: fix segfault on "del sys.module['__main__']"

Patch by Victor Stinner.

12 years agoIssue #15001: fix segfault on "del sys.module['__main__']"
Hynek Schlawack [Wed, 7 Nov 2012 08:02:24 +0000 (09:02 +0100)]
Issue #15001: fix segfault on "del sys.module['__main__']"

Patch by Victor Stinner.

12 years agoBackport fc8f1b1c76bf.
Stefan Krah [Tue, 6 Nov 2012 22:27:24 +0000 (23:27 +0100)]
Backport fc8f1b1c76bf.

12 years agoFix typo noticed by Tom Lynn.
Ezio Melotti [Mon, 5 Nov 2012 20:22:48 +0000 (22:22 +0200)]
Fix typo noticed by Tom Lynn.

12 years agoMerge #6717 crasher from 3.2
Nick Coghlan [Mon, 5 Nov 2012 11:32:11 +0000 (21:32 +1000)]
Merge #6717 crasher from 3.2

12 years agoRecord a known crasher from #6717
Nick Coghlan [Mon, 5 Nov 2012 11:26:57 +0000 (21:26 +1000)]
Record a known crasher from #6717

12 years agoThe migration to importlib eliminated this crasher
Nick Coghlan [Mon, 5 Nov 2012 10:40:25 +0000 (20:40 +1000)]
The migration to importlib eliminated this crasher

If anyone finds another recursive C path that bypasses the recursion
limiting, they can add a new crasher example.

12 years agoClose #15165: Fix test_email on Windows 64 bits
Victor Stinner [Mon, 5 Nov 2012 01:06:13 +0000 (02:06 +0100)]
Close #15165: Fix test_email on Windows 64 bits

Use year 1990 instead of year 1970 to avoid issues with negative timestamps.

12 years agoIssue #16350: Fix zlib decompressor handling of unused_data with multiple calls to...
Nadeem Vawda [Sun, 4 Nov 2012 23:38:48 +0000 (00:38 +0100)]
Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF.

Patch by Serhiy Storchaka.

12 years agoIssue #16350: Fix zlib decompressor handling of unused_data with multiple calls to...
Nadeem Vawda [Sun, 4 Nov 2012 23:37:42 +0000 (00:37 +0100)]
Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF.

Patch by Serhiy Storchaka.

12 years agoIssue #8271: Fix compilation on Windows
Victor Stinner [Sun, 4 Nov 2012 22:59:15 +0000 (23:59 +0100)]
Issue #8271: Fix compilation on Windows

12 years ago#5057: null merge with 3.2 (only add tests).
Ezio Melotti [Sun, 4 Nov 2012 22:13:57 +0000 (00:13 +0200)]
#5057: null merge with 3.2 (only add tests).

12 years ago#5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u...
Ezio Melotti [Sun, 4 Nov 2012 22:06:32 +0000 (00:06 +0200)]
#5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u"foo"[0]) in order to produce compatible pyc files between narrow and wide builds.

12 years ago#8271: the utf-8 decoder now outputs the correct number of U+FFFD characters when...
Ezio Melotti [Sun, 4 Nov 2012 21:21:38 +0000 (23:21 +0200)]
#8271: the utf-8 decoder now outputs the correct number of U+FFFD  characters when used with the "replace" error handler on invalid utf-8 sequences.  Patch by Serhiy Storchaka, tests by Ezio Melotti.

12 years agoProperly credit patch
Nick Coghlan [Sun, 4 Nov 2012 14:55:46 +0000 (00:55 +1000)]
Properly credit patch

12 years agoIssue #5765: Also check the compiler when finding the recursion limit
Nick Coghlan [Sun, 4 Nov 2012 14:19:18 +0000 (00:19 +1000)]
Issue #5765: Also check the compiler when finding the recursion limit

12 years agoIssue #5765: Apply a hard recursion limit in the compiler
Nick Coghlan [Sun, 4 Nov 2012 13:14:34 +0000 (23:14 +1000)]
Issue #5765: Apply a hard recursion limit in the compiler

Previously, excessive nesting in expressions would blow the
stack and segfault the interpreter. Now, a hard limit based
on the configured recursion limit and a hardcoded scaling
factor is applied.

12 years agoIssue #16402: Merge fix from 3.2
Mark Dickinson [Sun, 4 Nov 2012 11:47:05 +0000 (11:47 +0000)]
Issue #16402: Merge fix from 3.2

12 years agoIssue #16402: In range slicing, fix shadowing of exceptions from __index__ method.
Mark Dickinson [Sun, 4 Nov 2012 11:46:17 +0000 (11:46 +0000)]
Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method.

12 years ago#16304: merge with 3.2.
Ezio Melotti [Sun, 4 Nov 2012 04:59:51 +0000 (06:59 +0200)]
#16304: merge with 3.2.

12 years ago#16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz.
Ezio Melotti [Sun, 4 Nov 2012 04:59:22 +0000 (06:59 +0200)]
#16304: clarify match objects docs.  Initial patch by Jan Duzinkiewicz.

12 years agoFix compilation on Windows
Christian Heimes [Sat, 3 Nov 2012 22:08:18 +0000 (23:08 +0100)]
Fix compilation on Windows

12 years agoFix compilation on Windows
Christian Heimes [Sat, 3 Nov 2012 22:07:59 +0000 (23:07 +0100)]
Fix compilation on Windows

12 years agoAvoid fd leak in example. Caught by Serhiy.
Éric Araujo [Sat, 3 Nov 2012 21:39:45 +0000 (17:39 -0400)]
Avoid fd leak in example.  Caught by Serhiy.

12 years agoBranch merge
Éric Araujo [Sat, 3 Nov 2012 21:09:22 +0000 (17:09 -0400)]
Branch merge

12 years agoAdd examples for opener argument of open (#13424).
Éric Araujo [Sat, 3 Nov 2012 21:06:52 +0000 (17:06 -0400)]
Add examples for opener argument of open (#13424).

Patch by Guillaume Pratte.

12 years ago#16336: merge with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 21:04:41 +0000 (23:04 +0200)]
#16336: merge with 3.2.

12 years ago#16336: fix input checking in the surrogatepass error handler. Patch by Serhiy Storc...
Ezio Melotti [Sat, 3 Nov 2012 21:03:39 +0000 (23:03 +0200)]
#16336: fix input checking in the surrogatepass error handler.  Patch by Serhiy Storchaka.

12 years agoMerge typo fixes with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 19:32:55 +0000 (21:32 +0200)]
Merge typo fixes with 3.2.

12 years agoFix a couple typos in Misc/NEWS.
Ezio Melotti [Sat, 3 Nov 2012 19:30:32 +0000 (21:30 +0200)]
Fix a couple typos in Misc/NEWS.

12 years ago#8401: merge with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 19:22:41 +0000 (21:22 +0200)]
#8401: merge with 3.2.

12 years ago#8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error.
Ezio Melotti [Sat, 3 Nov 2012 19:19:06 +0000 (21:19 +0200)]
#8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error.

12 years agoMerge from 3.2: link to mapping glossary entry in docs.
Chris Jerdonek [Sat, 3 Nov 2012 19:06:42 +0000 (12:06 -0700)]
Merge from 3.2: link to mapping glossary entry in docs.

12 years agoLink to mapping glossary entry in "Mapping Types - dict" and os.environ docs.
Chris Jerdonek [Sat, 3 Nov 2012 19:05:55 +0000 (12:05 -0700)]
Link to mapping glossary entry in "Mapping Types - dict" and os.environ docs.

12 years ago#12759: merge with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 18:33:38 +0000 (20:33 +0200)]
#12759: merge with 3.2.

12 years ago#12759: sre_parse now raises a proper error when the name of the group is missing...
Ezio Melotti [Sat, 3 Nov 2012 18:33:08 +0000 (20:33 +0200)]
#12759: sre_parse now raises a proper error when the name of the group is missing.  Initial patch by Serhiy Storchaka.

12 years ago#4711: merge with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 16:29:16 +0000 (18:29 +0200)]
#4711: merge with 3.2.

12 years ago#4711: break long words in the docs sidebar to avoid overflow.
Ezio Melotti [Sat, 3 Nov 2012 16:25:04 +0000 (18:25 +0200)]
#4711: break long words in the docs sidebar to avoid overflow.

12 years ago#16152: merge with 3.2.
Ezio Melotti [Sat, 3 Nov 2012 15:46:51 +0000 (17:46 +0200)]
#16152: merge with 3.2.

12 years ago#16152: fix tokenize to ignore whitespace at the end of the code when no newline...
Ezio Melotti [Sat, 3 Nov 2012 15:38:43 +0000 (17:38 +0200)]
#16152: fix tokenize to ignore whitespace at the end of the code when no newline is found.  Patch by Ned Batchelder.

12 years agoIssue #15814: Use hash function that is compatible with the equality
Stefan Krah [Fri, 2 Nov 2012 16:49:22 +0000 (17:49 +0100)]
Issue #15814: Use hash function that is compatible with the equality
definition from #15573.

12 years agoIssue #16145: Support legacy strings in the _csv module.
Stefan Krah [Fri, 2 Nov 2012 13:44:20 +0000 (14:44 +0100)]
Issue #16145: Support legacy strings in the _csv module.

12 years agomerge with 3.2
Georg Brandl [Fri, 2 Nov 2012 06:34:46 +0000 (07:34 +0100)]
merge with 3.2

12 years agoGrammar touchup.
Georg Brandl [Fri, 2 Nov 2012 06:34:37 +0000 (07:34 +0100)]
Grammar touchup.

12 years agoMerge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
Andrew Svetlov [Thu, 1 Nov 2012 20:44:06 +0000 (22:44 +0200)]
Merge issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu

 Patch by Todd Rovito.

12 years agoIssue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu
Andrew Svetlov [Thu, 1 Nov 2012 20:41:19 +0000 (22:41 +0200)]
Issue #1207589: Add Cut/Copy/Paste items to IDLE right click Context Menu

 Patch by Todd Rovito.

12 years agoMerge: Reword set docs to use *proper subset/superset* terminology.
Andrew Svetlov [Thu, 1 Nov 2012 19:48:16 +0000 (21:48 +0200)]
Merge: Reword set docs to use *proper subset/superset* terminology.

12 years agoReword set docs to use *proper subset/superset* terminology.
Andrew Svetlov [Thu, 1 Nov 2012 19:47:54 +0000 (21:47 +0200)]
Reword set docs to use *proper subset/superset* terminology.

12 years agoMerge issue #14893: Add function annotation example to function tutorial.
Andrew Svetlov [Thu, 1 Nov 2012 19:27:23 +0000 (21:27 +0200)]
Merge issue #14893: Add function annotation example to function tutorial.

Patch by Zachary Ware.

12 years agoIssue #14893: Add function annotation example to function tutorial.
Andrew Svetlov [Thu, 1 Nov 2012 19:26:55 +0000 (21:26 +0200)]
Issue #14893: Add function annotation example to function tutorial.

Patch by Zachary Ware.

12 years agoIssue #16230: Fix a crash in select.select() when one the lists changes size while...
Antoine Pitrou [Thu, 1 Nov 2012 19:15:23 +0000 (20:15 +0100)]
Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on.
Patch by Serhiy Storchaka.

12 years agoIssue #16230: Fix a crash in select.select() when one the lists changes size while...
Antoine Pitrou [Thu, 1 Nov 2012 19:13:54 +0000 (20:13 +0100)]
Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on.
Patch by Serhiy Storchaka.

12 years agoIssue #16228: Fix a crash in the json module where a list changes size while it is...
Antoine Pitrou [Thu, 1 Nov 2012 18:59:21 +0000 (19:59 +0100)]
Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded.
Patch by Serhiy Storchaka.