]> granicus.if.org Git - python/log
python
12 years agoIssue #15001: fix segfault on "del sys.modules['__main__']"
Hynek Schlawack [Wed, 7 Nov 2012 08:41:28 +0000 (09:41 +0100)]
Issue #15001: fix segfault on "del sys.modules['__main__']"

Patch by Victor Stinner.

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

Patch by Serhiy Storchaka.

12 years agoFix typo.
Ezio Melotti [Sun, 4 Nov 2012 22:06:50 +0000 (00:06 +0200)]
Fix typo.

12 years ago#5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u...
Ezio Melotti [Sun, 4 Nov 2012 22:03:21 +0000 (00:03 +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#16304: clarify match objects docs. Initial patch by Jan Duzinkiewicz.
Ezio Melotti [Sun, 4 Nov 2012 04:46:28 +0000 (06:46 +0200)]
#16304: clarify match objects docs.  Initial patch by Jan Duzinkiewicz.

12 years agoCloses #16183: ZipExtFile object close without file handle closed (backporting of...
Jesus Cea [Sun, 4 Nov 2012 01:32:08 +0000 (02:32 +0100)]
Closes #16183: ZipExtFile object close without file handle closed (backporting of Issue #9846)

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 agoFix a couple typos in Misc/NEWS.
Ezio Melotti [Sat, 3 Nov 2012 19:29:08 +0000 (21:29 +0200)]
Fix a couple typos in Misc/NEWS.

12 years agoMerge heads.
Ezio Melotti [Sat, 3 Nov 2012 19:18:57 +0000 (21:18 +0200)]
Merge heads.

12 years agoBackport from 3.2: link to mapping glossary entry in docs.
Chris Jerdonek [Sat, 3 Nov 2012 19:13:46 +0000 (12:13 -0700)]
Backport from 3.2: link to mapping glossary entry in docs.

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:10:45 +0000 (21:10 +0200)]
#8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error.

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:31:12 +0000 (20:31 +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: 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 agoRemove trailing whitespace.
Ezio Melotti [Sat, 3 Nov 2012 16:24:11 +0000 (18:24 +0200)]
Remove trailing whitespace.

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:30:51 +0000 (17:30 +0200)]
#16152: fix tokenize to ignore whitespace at the end of the code when no newline is found.  Patch by Ned Batchelder.

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

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

 Patch by Todd Rovito.

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

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 19:07:40 +0000 (20:07 +0100)]
Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded.
Patch by Serhiy Storchaka.

12 years agoIssue #16377: fix missed test due to incorrect indentation in test_bisect. Thanks...
Mark Dickinson [Wed, 31 Oct 2012 20:38:52 +0000 (20:38 +0000)]
Issue #16377: fix missed test due to incorrect indentation in test_bisect.  Thanks Yury Selivanov.

12 years agoIssue #14900: document added sort keys for profile stats.
Andrew Svetlov [Wed, 31 Oct 2012 19:54:45 +0000 (21:54 +0200)]
Issue #14900: document added sort keys for profile stats.

12 years agoIssue #16348: Fix incorrect documentation for Decimal.remainder_near.
Mark Dickinson [Wed, 31 Oct 2012 19:44:09 +0000 (19:44 +0000)]
Issue #16348: Fix incorrect documentation for Decimal.remainder_near.

12 years agoavoid a function call with redundant checks for dict size
Benjamin Peterson [Wed, 31 Oct 2012 18:22:12 +0000 (14:22 -0400)]
avoid a function call with redundant checks for dict size

12 years agofix spelling
Benjamin Peterson [Wed, 31 Oct 2012 18:16:09 +0000 (14:16 -0400)]
fix spelling

12 years agoonly fast-path fromkeys() when the constructor returns a empty dict (closes #16345)
Benjamin Peterson [Wed, 31 Oct 2012 18:05:55 +0000 (14:05 -0400)]
only fast-path fromkeys() when the constructor returns a empty dict (closes #16345)

12 years agoCloses #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT!
Jesus Cea [Wed, 31 Oct 2012 16:00:19 +0000 (17:00 +0100)]
Closes #16369: Global PyTypeObjects not initialized with PyType_Ready(...). DOCUMENT IT!

12 years ago#16371: fix up the English.
R David Murray [Wed, 31 Oct 2012 14:53:13 +0000 (10:53 -0400)]
#16371: fix up the English.

12 years agoIssue #16370: Mention Py_SetProgramName in example for very high level embedding.
Andrew Svetlov [Wed, 31 Oct 2012 14:01:09 +0000 (16:01 +0200)]
Issue #16370: Mention Py_SetProgramName in example for very high level embedding.

12 years agoFix docstring for deque ctor to mark iterable parameter optional
Andrew Svetlov [Wed, 31 Oct 2012 09:50:00 +0000 (11:50 +0200)]
Fix docstring for deque ctor to mark iterable parameter optional

12 years agoinitialize more global type objects (closes #16369)
Benjamin Peterson [Wed, 31 Oct 2012 03:21:10 +0000 (23:21 -0400)]
initialize more global type objects (closes #16369)

12 years agoIssue #16341: convert examples to use except ... as ... syntax.
Andrew Svetlov [Tue, 30 Oct 2012 19:56:43 +0000 (21:56 +0200)]
Issue #16341: convert examples to use except ... as ... syntax.

12 years ago#14897: Enhance error messages of struct.pack and struct.pack_into
Petri Lehtinen [Mon, 29 Oct 2012 19:16:57 +0000 (21:16 +0200)]
#14897: Enhance error messages of struct.pack and struct.pack_into

Patch by Matti Mäki.

12 years agoBackport from 3.2: remove "Release" and "Date" markers from index pages.
Chris Jerdonek [Sun, 28 Oct 2012 18:16:36 +0000 (11:16 -0700)]
Backport from 3.2: remove "Release" and "Date" markers from index pages.

12 years agoAdd test for BZ2Decompressor.decompress("") after end of stream.
Nadeem Vawda [Sun, 28 Oct 2012 14:20:35 +0000 (15:20 +0100)]
Add test for BZ2Decompressor.decompress("") after end of stream.

12 years agoIssue #14570: Document json sort_keys parameter properly.
Andrew Svetlov [Sun, 28 Oct 2012 12:58:52 +0000 (14:58 +0200)]
Issue #14570: Document json sort_keys parameter properly.

Patch by Chris Rebert.

12 years agoRemove confusing "Release" and "Date" markers from whatsnews.
Georg Brandl [Sun, 28 Oct 2012 12:35:56 +0000 (13:35 +0100)]
Remove confusing "Release" and "Date" markers from whatsnews.

12 years agoIssue #14700: Fix buggy overflow checks for large precision and width in new-style...
Mark Dickinson [Sun, 28 Oct 2012 10:00:46 +0000 (10:00 +0000)]
Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting.

12 years agochangeset: 80007:49e4541f2aef
Georg Brandl [Sun, 28 Oct 2012 09:51:35 +0000 (10:51 +0100)]
changeset: 80007:49e4541f2aef
parent: 80003:be83cbf4a789
parent: 80006:32df036e6b75
user: Georg Brandl <georg@python.org>
date: Sun Oct 28 10:50:11 2012 +0100
summary: merge with 3.3

12 years agoIssue #14616: Document pipes.quote and mention this one in subprocess docs.
Andrew Svetlov [Sun, 28 Oct 2012 09:48:02 +0000 (11:48 +0200)]
Issue #14616: Document pipes.quote and mention this one in subprocess docs.

Patch by Chris Rebert.

12 years agoUpdate current version of the "dailybuild" script.
Georg Brandl [Sun, 28 Oct 2012 09:12:47 +0000 (10:12 +0100)]
Update current version of the "dailybuild" script.

12 years agoUpdate current version of the "dailybuild" script.
Georg Brandl [Sun, 28 Oct 2012 07:18:52 +0000 (08:18 +0100)]
Update current version of the "dailybuild" script.

12 years agoAdd a autobuild-quick target that only rebuilds HTML.
Georg Brandl [Sun, 28 Oct 2012 07:09:02 +0000 (08:09 +0100)]
Add a autobuild-quick target that only rebuilds HTML.

12 years agomerge with 2.6
Georg Brandl [Sun, 28 Oct 2012 07:06:11 +0000 (08:06 +0100)]
merge with 2.6

12 years ago#8040: port versionswitcher patch to 2.6.
Georg Brandl [Sun, 28 Oct 2012 07:04:38 +0000 (08:04 +0100)]
#8040: port versionswitcher patch to 2.6.

12 years ago#8040: fix the version.
Ezio Melotti [Sat, 27 Oct 2012 20:12:48 +0000 (23:12 +0300)]
#8040: fix the version.

12 years ago#8040: enable the versionswitcher for the autobuild-dev target.
Ezio Melotti [Sat, 27 Oct 2012 19:28:48 +0000 (22:28 +0300)]
#8040: enable the versionswitcher for the autobuild-dev target.

12 years ago#8040: add a version switcher to the documentation. Patch by Yury Selivanov.
Ezio Melotti [Sat, 27 Oct 2012 19:04:56 +0000 (22:04 +0300)]
#8040: add a version switcher to the documentation.  Patch by Yury Selivanov.

12 years ago#12890: don't emit <p> tags in text mode when logdir specified.
R David Murray [Sat, 27 Oct 2012 18:42:36 +0000 (14:42 -0400)]
#12890: don't emit <p> tags in text mode when logdir specified.

Patch by Jeff McNeil.

12 years ago#15043: Improve test_gdb support of gdb >= 7.4.
R David Murray [Sat, 27 Oct 2012 17:47:49 +0000 (13:47 -0400)]
#15043: Improve test_gdb support of gdb >= 7.4.

Instead of requiring the tester to manually add the path to the python-gdb.py
file in the checkout to their .gdbinit file, add it automatically when
invoking gdb in the test.

12 years agoAdd some tests in 2.7 for Issue #16250
Senthil Kumaran [Sat, 27 Oct 2012 10:48:40 +0000 (03:48 -0700)]
Add some tests in 2.7 for Issue #16250

12 years agoIssue #16274: Fix test_asyncore on Solaris.
Trent Nelson [Sat, 27 Oct 2012 02:21:46 +0000 (22:21 -0400)]
Issue #16274: Fix test_asyncore on Solaris.

12 years ago#16332: use "except OSError as e" in subprocess docs. Patch by Berker Peksag.
Ezio Melotti [Fri, 26 Oct 2012 20:10:07 +0000 (23:10 +0300)]
#16332: use "except OSError as e" in subprocess docs.  Patch by Berker Peksag.

12 years ago#16206: Improve examples about dict construction.
Ezio Melotti [Fri, 26 Oct 2012 16:14:16 +0000 (19:14 +0300)]
#16206: Improve examples about dict construction.

12 years agoBackport from 3.2: fix formatting of syntax description of function definition.
Chris Jerdonek [Fri, 26 Oct 2012 00:26:10 +0000 (17:26 -0700)]
Backport from 3.2: fix formatting of syntax description of function definition.

12 years ago#16303: remove extra quotes from exception and add (). Initial patch by Vladimir...
Ezio Melotti [Wed, 24 Oct 2012 20:43:02 +0000 (23:43 +0300)]
#16303: remove extra quotes from exception and add ().  Initial patch by Vladimir Rutsky.

12 years ago#16210: combine the two type() docs. Patch by Pete Sevander.
Ezio Melotti [Wed, 24 Oct 2012 20:01:30 +0000 (23:01 +0300)]
#16210: combine the two type() docs.  Patch by Pete Sevander.

12 years ago#15040: Close files in mailbox tests for PyPy compatibility
Petri Lehtinen [Tue, 23 Oct 2012 11:39:34 +0000 (14:39 +0300)]
#15040: Close files in mailbox tests for PyPy compatibility

Original patch by Matti Picus.

12 years agoIssue #15853: Prevent IDLE crash on OS X when opening Preferences menu
Ned Deily [Mon, 22 Oct 2012 22:13:01 +0000 (15:13 -0700)]
Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
with certain versions of Tk 8.5.  Initial patch by Kevin Walzer.

12 years agoCloses #16294: 8 space indent in tutorial
Jesus Cea [Mon, 22 Oct 2012 11:14:20 +0000 (13:14 +0200)]
Closes #16294: 8 space indent in tutorial

12 years agoIssue #14398: Fix size truncation and overflow bugs in bz2 module.
Nadeem Vawda [Sun, 21 Oct 2012 21:09:08 +0000 (23:09 +0200)]
Issue #14398: Fix size truncation and overflow bugs in bz2 module.

12 years agoIssue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
Nadeem Vawda [Sun, 21 Oct 2012 16:15:05 +0000 (18:15 +0200)]
Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().

12 years agoFix whacky spacing in test_wsgiref
Antoine Pitrou [Sun, 21 Oct 2012 12:10:29 +0000 (14:10 +0200)]
Fix whacky spacing in test_wsgiref

12 years agoIssue #16220: wsgiref now always calls close() on an iterable response.
Antoine Pitrou [Sun, 21 Oct 2012 12:09:05 +0000 (14:09 +0200)]
Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.

12 years agoIssue #10405: Document IDLE context menus in Standard Library document
Ned Deily [Sat, 20 Oct 2012 20:23:25 +0000 (13:23 -0700)]
Issue #10405: Document IDLE context menus in Standard Library document
and IDLE Help file.  (Thanks to Nick ODell and Todd Rovito for suggestions.)
Update Debug menu options in docs to match current code plus various other
minor IDLE doc and help edits.

12 years agoNo reason to use a generator here
Nick Coghlan [Fri, 19 Oct 2012 13:59:35 +0000 (23:59 +1000)]
No reason to use a generator here

12 years agoIssue #6074: Actually delete the source file in the test as intended
Nick Coghlan [Fri, 19 Oct 2012 13:17:48 +0000 (23:17 +1000)]
Issue #6074: Actually delete the source file in the test as intended

12 years agoIssue #6074: Restore the long-broken support for running with read-only source files...
Nick Coghlan [Fri, 19 Oct 2012 11:58:18 +0000 (21:58 +1000)]
Issue #6074: Restore the long-broken support for running with read-only source files on Windows

12 years agoIssue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore.
Trent Nelson [Thu, 18 Oct 2012 11:44:43 +0000 (07:44 -0400)]
Issue #16274: revert r79813:90a46f8943d0 changes to asyncore/test_asyncore.

The backport from 3.2 included a few things not appropriate for 2.7.

12 years agoIssue #16274: backport of 3.2's asyncore/test_asyncore to 2.7.
Trent Nelson [Thu, 18 Oct 2012 10:08:01 +0000 (06:08 -0400)]
Issue #16274: backport of 3.2's asyncore/test_asyncore to 2.7.

This fixes failing tests on Solaris 10.

12 years agoIssue #16257: make test_create_connection() handle ENETUNREACH.
Trent Nelson [Thu, 18 Oct 2012 05:35:32 +0000 (01:35 -0400)]
Issue #16257: make test_create_connection() handle ENETUNREACH.

12 years agoDon't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX. It breaks them.
Trent Nelson [Wed, 17 Oct 2012 22:01:12 +0000 (18:01 -0400)]
Don't add -OPT:Olimit to CFLAGS on AIX, SunOS, HP-UX or IRIX.  It breaks them.

12 years agoIssue #9583: Document startup option/environment interaction.
Andrew Svetlov [Wed, 17 Oct 2012 14:14:28 +0000 (17:14 +0300)]
Issue #9583: Document startup option/environment interaction.

Patch by Todd Rovito.

12 years agoIssue #15819: use standard autoconf preset output variables.
Trent Nelson [Wed, 17 Oct 2012 08:32:49 +0000 (04:32 -0400)]
Issue #15819: use standard autoconf preset output variables.

Reported by: Roumen Petrov

12 years agoAlso add tests for TextIOWrapper.writelines() (issue #15744).
Antoine Pitrou [Tue, 16 Oct 2012 21:02:27 +0000 (23:02 +0200)]
Also add tests for TextIOWrapper.writelines() (issue #15744).

12 years agoAdd tests for the writelines() method of file objects.
Antoine Pitrou [Tue, 16 Oct 2012 20:57:11 +0000 (22:57 +0200)]
Add tests for the writelines() method of file objects.
Original patch by Felipe Cruz.

12 years agoMerge heads.
Trent Nelson [Tue, 16 Oct 2012 15:10:40 +0000 (11:10 -0400)]
Merge heads.

12 years agoIssue #15819: tweak logic in previous commit (e0a2b14a3cf9).
Trent Nelson [Tue, 16 Oct 2012 14:52:35 +0000 (10:52 -0400)]
Issue #15819: tweak logic in previous commit (e0a2b14a3cf9).

12 years agomerge heads
Benjamin Peterson [Tue, 16 Oct 2012 13:52:02 +0000 (09:52 -0400)]
merge heads

12 years agoonly run doctests when __doc__ is around
Benjamin Peterson [Tue, 16 Oct 2012 13:51:46 +0000 (09:51 -0400)]
only run doctests when __doc__ is around

12 years agoIssue #15819: additional fixes for out-of-tree builds from read-only src.
Trent Nelson [Tue, 16 Oct 2012 13:42:45 +0000 (09:42 -0400)]
Issue #15819: additional fixes for out-of-tree builds from read-only src.

Unlike 3.2, 3.3 and 3.x, which add "-IObjects -IPython -IInclude" to
BASECPPFLAGS when building out-of-tree, 2.7 only needs to add -IInclude
(for Python-ast.h and graminit.h).

12 years agoIssue #15936: Reformat text for os.random to follow Larry Hastings suggestion
Andrew Svetlov [Tue, 16 Oct 2012 10:51:26 +0000 (13:51 +0300)]
Issue #15936: Reformat text for os.random to follow Larry Hastings suggestion

12 years agoIssue #15936: Add link from os.urandom to random.SystemRandom
Andrew Svetlov [Tue, 16 Oct 2012 10:23:15 +0000 (13:23 +0300)]
Issue #15936: Add link from os.urandom to random.SystemRandom

12 years agoIssue #16244: Remove file mode overrides.
Vinay Sajip [Tue, 16 Oct 2012 09:27:00 +0000 (10:27 +0100)]
Issue #16244: Remove file mode overrides.

12 years agoIssue #16225: Backport from 3.2: Add additional note to tutorial about looping.
Chris Jerdonek [Tue, 16 Oct 2012 03:01:38 +0000 (20:01 -0700)]
Issue #16225: Backport from 3.2: Add additional note to tutorial about looping.

12 years agofix typo
Benjamin Peterson [Tue, 16 Oct 2012 02:29:02 +0000 (22:29 -0400)]
fix typo

12 years agodon't expect warnings from doctests if they can't run
Benjamin Peterson [Tue, 16 Oct 2012 00:38:21 +0000 (20:38 -0400)]
don't expect warnings from doctests if they can't run

12 years agoIssue #16227: Add to 2.x Unicode HOWTO a link to the Python 3 version.
Chris Jerdonek [Tue, 16 Oct 2012 00:12:17 +0000 (17:12 -0700)]
Issue #16227: Add to 2.x Unicode HOWTO a link to the Python 3 version.

12 years agoIssue #16206: Backport dict documentation improvements from 3.2.
Chris Jerdonek [Sat, 13 Oct 2012 10:49:30 +0000 (03:49 -0700)]
Issue #16206: Backport dict documentation improvements from 3.2.

Improve the documentation of the dict constructor.  This change includes
replacing the single-line signature documentation with a more complete
multiple-line signature.

12 years agoString exceptions aren't just deprecated, they are gone.
Raymond Hettinger [Sat, 13 Oct 2012 02:44:35 +0000 (19:44 -0700)]
String exceptions aren't just deprecated, they are gone.

12 years agoFixes Issue #12268 for the io module - File readline, readlines and
Gregory P. Smith [Fri, 12 Oct 2012 20:02:06 +0000 (13:02 -0700)]
Fixes Issue #12268 for the io module - File readline, readlines and
read or readall methods no longer lose data when an underlying read
system call is interrupted within an io module object.  IOError is no
longer raised due to a read system call returning EINTR from within
these methods.

This is a backport of changeset 781b95159954 from 3.2.
The earlier 2.7 changeset 67dc99a989cd already fixed this for the
builtin python 2.x file object.

12 years agoIssue #16199: Backport 2to3 typo fix from 3.2.
Chris Jerdonek [Thu, 11 Oct 2012 23:15:46 +0000 (16:15 -0700)]
Issue #16199: Backport 2to3 typo fix from 3.2.

12 years agoFix #16176. Properly identify Windows 8 via platform.platform()
Brian Curtin [Thu, 11 Oct 2012 21:16:50 +0000 (16:16 -0500)]
Fix #16176. Properly identify Windows 8 via platform.platform()

Add handling of the 6.2 release line, aka Windows 8 and Windows 2012 Server.

12 years agoBackport from 3.2: Fix placement of shell=True warning in subprocess.Popen() docs.
Chris Jerdonek [Thu, 11 Oct 2012 05:58:57 +0000 (22:58 -0700)]
Backport from 3.2: Fix placement of shell=True warning in subprocess.Popen() docs.

12 years agoIssue #16115: Backport subprocess.Popen() documentation improvements from 3.2.
Chris Jerdonek [Thu, 11 Oct 2012 00:55:41 +0000 (17:55 -0700)]
Issue #16115: Backport subprocess.Popen() documentation improvements from 3.2.

12 years agoIssue #12947: Backport doctest documentation change from 3.3.
Chris Jerdonek [Wed, 10 Oct 2012 15:39:34 +0000 (08:39 -0700)]
Issue #12947: Backport doctest documentation change from 3.3.

12 years agoMissed one instance of code-block:: text highlighting to revert.
Georg Brandl [Wed, 10 Oct 2012 14:56:15 +0000 (16:56 +0200)]
Missed one instance of code-block:: text highlighting to revert.

12 years agoIssue #12947: revert earlier workaround and use a monkey-patch to enable showing...
Georg Brandl [Wed, 10 Oct 2012 14:45:11 +0000 (16:45 +0200)]
Issue #12947: revert earlier workaround and use a monkey-patch to enable showing doctest directives only in the doctest docs.

12 years agoIssue #12947: Backport doctest documentation improvements from 3.3.
Chris Jerdonek [Wed, 10 Oct 2012 14:13:56 +0000 (07:13 -0700)]
Issue #12947: Backport doctest documentation improvements from 3.3.

12 years agoFix Issue 15922: make howto/urllib2.rst doctests pass.
Senthil Kumaran [Tue, 9 Oct 2012 08:03:35 +0000 (01:03 -0700)]
Fix Issue 15922: make howto/urllib2.rst doctests pass.
Patch by Chris Jerdonek. Address Ezio's review comment.