]> granicus.if.org Git - python/log
python
11 years agoRemoved old implementation of ntpath.splitunc() (issue #19912).
Serhiy Storchaka [Mon, 16 Dec 2013 16:43:00 +0000 (18:43 +0200)]
Removed old implementation of ntpath.splitunc() (issue #19912).

11 years agoIssue #19987: Re-write test_alias_fallback in test_winsound to have two
Zachary Ware [Mon, 16 Dec 2013 14:58:10 +0000 (08:58 -0600)]
Issue #19987: Re-write test_alias_fallback in test_winsound to have two
acceptable outcomes: success or RuntimeError.  Without being able to
actually hear whether a sound was played, either one could be right, but
any other error would be a failure.

11 years agoMerge heads
Serhiy Storchaka [Mon, 16 Dec 2013 13:16:11 +0000 (15:16 +0200)]
Merge heads

11 years agoIssue #19912: Fixed numerous bugs in ntpath.splitunc().
Serhiy Storchaka [Mon, 16 Dec 2013 13:15:29 +0000 (15:15 +0200)]
Issue #19912: Fixed numerous bugs in ntpath.splitunc().

* splitunc() no more returns illegal result for paths with redundant slashes.
* splitunc() now correctly processes the u'İ' character
  (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
* Added new tests for splitunc().

11 years agoIssue #19965: Make sure that Python-ast.h is properly taken into account in the
Charles-François Natali [Sun, 15 Dec 2013 18:07:44 +0000 (19:07 +0100)]
Issue #19965: Make sure that Python-ast.h is properly taken into account in the
makefile.

11 years agoIssue #19623: Fixed writing to unseekable files in the aifc module.
Serhiy Storchaka [Sat, 14 Dec 2013 18:34:33 +0000 (20:34 +0200)]
Issue #19623: Fixed writing to unseekable files in the aifc module.
Fixed writing 'ulaw' (lower case) compressed AIFC files.

11 years agoIssue #17919: Fixed integer overflow in the eventmask parameter.
Serhiy Storchaka [Sat, 14 Dec 2013 17:11:04 +0000 (19:11 +0200)]
Issue #17919: Fixed integer overflow in the eventmask parameter.

11 years ago#19981: fix typo in email.mailbox docs. Patch by Claudiu Popa.
Ezio Melotti [Sat, 14 Dec 2013 10:42:29 +0000 (12:42 +0200)]
#19981: fix typo in email.mailbox docs.  Patch by Claudiu Popa.

11 years agoIssue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.
Serhiy Storchaka [Fri, 13 Dec 2013 10:09:05 +0000 (12:09 +0200)]
Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX.

11 years agoIssue #14432: Generator now clears the borrowed reference to the thread state
Victor Stinner [Fri, 13 Dec 2013 01:37:09 +0000 (02:37 +0100)]
Issue #14432: Generator now clears the borrowed reference to the thread state

Fix a crash when a generator is created in a C thread that is destroyed while
the generator is still used. The issue was that a generator contains a frame,
and the frame kept a reference to the Python state of the destroyed C thread.
The crash occurs when a trace function is setup.

11 years agoFixes Issue #17200: telnetlib's read_until and expect timeout was broken by the
Gregory P. Smith [Wed, 11 Dec 2013 02:22:03 +0000 (18:22 -0800)]
Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the
fix to Issue #14635 in Python 2.7.4 to be interpreted as milliseconds
instead of seconds when the platform supports select.poll (ie: everywhere).
It is now treated as seconds once again.

11 years agoIssue #18270: Prevent possible IDLE AttributeError on OS X when no initial
Ned Deily [Wed, 11 Dec 2013 00:21:58 +0000 (16:21 -0800)]
Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial
shell window is present. (Original patch by Terry Reedy)

11 years agoIssue #19572: Replace a return that shouldn't have been removed from test_os.
Zachary Ware [Tue, 10 Dec 2013 22:06:46 +0000 (16:06 -0600)]
Issue #19572: Replace a return that shouldn't have been removed from test_os.
This should fix the test_os failure on the AMD64 Windows 7 buildbot.

11 years agoIssue #19928: Fix test on Windows
Zachary Ware [Tue, 10 Dec 2013 20:14:28 +0000 (14:14 -0600)]
Issue #19928: Fix test on Windows

11 years agoIssue #19572: More silently skipped tests explicitly skipped.
Zachary Ware [Tue, 10 Dec 2013 20:09:20 +0000 (14:09 -0600)]
Issue #19572: More silently skipped tests explicitly skipped.

11 years agoSkip test for #19878 on Windows.
Nadeem Vawda [Tue, 10 Dec 2013 16:23:00 +0000 (17:23 +0100)]
Skip test for #19878 on Windows.

11 years ago#19943: fix typo noticed by Jakub Wilk.
Ezio Melotti [Tue, 10 Dec 2013 12:05:46 +0000 (14:05 +0200)]
#19943: fix typo noticed by Jakub Wilk.

11 years agoIssue #19407: add Python Packaging User Guide notes
Nick Coghlan [Tue, 10 Dec 2013 11:18:32 +0000 (21:18 +1000)]
Issue #19407: add Python Packaging User Guide notes

The stdlib docs for package distribution and building extensions
are rather dated, and that isn't expected to change for 2.7 and
3.3.

The Python Packaging User Guide isn't complete either, but it's
already a much better road map for new users than the existing
stdlib docs.

11 years agoIssue #19928: Implemented a test for repr() of cell objects.
Serhiy Storchaka [Tue, 10 Dec 2013 08:20:11 +0000 (10:20 +0200)]
Issue #19928: Implemented a test for repr() of cell objects.

11 years agoIssue #19481: print() of unicode, str or bytearray subclass instance in IDLE
Serhiy Storchaka [Tue, 10 Dec 2013 08:04:41 +0000 (10:04 +0200)]
Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE
no more hangs.

11 years agoIssue #19932: Fix typo in import.h, missing whitespaces in function prototypes.
Victor Stinner [Tue, 10 Dec 2013 00:23:22 +0000 (01:23 +0100)]
Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.

11 years agoIssue #19099: The struct module now supports Unicode format strings.
Serhiy Storchaka [Sun, 8 Dec 2013 15:44:50 +0000 (17:44 +0200)]
Issue #19099: The struct module now supports Unicode format strings.

11 years agoCloses #19878: Fix segfault in bz2 module.
Nadeem Vawda [Sun, 8 Dec 2013 14:31:50 +0000 (15:31 +0100)]
Closes #19878: Fix segfault in bz2 module.

Initial patch by Vajrasky Kok.

11 years agoIssue #16373: Prevent infinite recursion for ABC Set class comparisons.
Serhiy Storchaka [Fri, 6 Dec 2013 21:23:15 +0000 (23:23 +0200)]
Issue #16373: Prevent infinite recursion for ABC Set class comparisons.

11 years agoAdded minor clarification in logging HOWTO.
Vinay Sajip [Fri, 6 Dec 2013 11:21:15 +0000 (11:21 +0000)]
Added minor clarification in logging HOWTO.

11 years agoIssue #18840: Introduce the json module in the tutorial, and deemphasize the pickle...
Antoine Pitrou [Thu, 5 Dec 2013 22:46:32 +0000 (23:46 +0100)]
Issue #18840: Introduce the json module in the tutorial, and deemphasize the pickle module.

11 years agoIssue #7105: weak dict iterators are fragile because of unpredictable GC runs
Kristján Valur Jónsson [Thu, 5 Dec 2013 10:03:45 +0000 (10:03 +0000)]
Issue #7105:  weak dict iterators are fragile because of unpredictable GC runs
Backport the fix from pyton 3.x for this issue.

11 years agoFudge - http.client doesn't exist in 2.7. Use Queue.Empty instead.
Tim Peters [Wed, 4 Dec 2013 03:49:30 +0000 (21:49 -0600)]
Fudge - http.client doesn't exist in 2.7.  Use Queue.Empty instead.

11 years agoIssue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.
Tim Peters [Wed, 4 Dec 2013 03:02:05 +0000 (21:02 -0600)]
Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.

Grafted from c80083ad142d.

11 years agoIssue #19814: Clarify argparse's docs w.r.t prefix matching
Eli Bendersky [Mon, 2 Dec 2013 13:53:35 +0000 (05:53 -0800)]
Issue #19814: Clarify argparse's docs w.r.t prefix matching

11 years agoFixed JSON tests on wide build when ran from *.pyc files (issue #11489).
Serhiy Storchaka [Sun, 1 Dec 2013 15:30:55 +0000 (17:30 +0200)]
Fixed JSON tests on wide build when ran from *.pyc files (issue #11489).

11 years agoIssue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.
Alexandre Vassalotti [Sun, 1 Dec 2013 01:43:42 +0000 (17:43 -0800)]
Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.

11 years agoMerge heads.
Alexandre Vassalotti [Sun, 1 Dec 2013 00:56:36 +0000 (16:56 -0800)]
Merge heads.

11 years agoIssue #6477: Added pickling support for singletons and their types.
Alexandre Vassalotti [Sun, 1 Dec 2013 00:52:03 +0000 (16:52 -0800)]
Issue #6477: Added pickling support for singletons and their types.

11 years agoIssue #19789: Clarified documentation for logging.disable.
Vinay Sajip [Sat, 30 Nov 2013 22:43:13 +0000 (22:43 +0000)]
Issue #19789: Clarified documentation for logging.disable.

11 years agoFix typo in Misc/NEWS.
Alexandre Vassalotti [Sat, 30 Nov 2013 22:02:47 +0000 (14:02 -0800)]
Fix typo in Misc/NEWS.

11 years agoIssue #16231: Allow false values other than None to be used as persistent IDs.
Alexandre Vassalotti [Sat, 30 Nov 2013 21:24:13 +0000 (13:24 -0800)]
Issue #16231: Allow false values other than None to be used as persistent IDs.

11 years agoIssue #19595: Re-enable a long-disabled test in test_winsound
Zachary Ware [Thu, 28 Nov 2013 05:56:04 +0000 (23:56 -0600)]
Issue #19595: Re-enable a long-disabled test in test_winsound

11 years agoIssue #19795: Improved markup of True/False constants.
Serhiy Storchaka [Fri, 29 Nov 2013 10:16:53 +0000 (12:16 +0200)]
Issue #19795: Improved markup of True/False constants.

11 years agoFix indentation from previous commit
Eli Bendersky [Thu, 28 Nov 2013 14:37:25 +0000 (06:37 -0800)]
Fix indentation from previous commit

11 years agoIssue #19815: Fix segfault when parsing empty namespace declaration.
Eli Bendersky [Thu, 28 Nov 2013 14:25:45 +0000 (06:25 -0800)]
Issue #19815: Fix segfault when parsing empty namespace declaration.

Based on patches by Christian Heimes and Vajrasky Kok

11 years agoSkip test_find_mac on Windows (issue #19804).
Serhiy Storchaka [Wed, 27 Nov 2013 06:57:33 +0000 (08:57 +0200)]
Skip test_find_mac on Windows (issue #19804).

This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin.

11 years agoMerge heads
Zachary Ware [Tue, 26 Nov 2013 20:55:46 +0000 (14:55 -0600)]
Merge heads

11 years agoIssue #19588: Fixed tests in test_random that were silently skipped most
Zachary Ware [Tue, 26 Nov 2013 20:49:42 +0000 (14:49 -0600)]
Issue #19588: Fixed tests in test_random that were silently skipped most
of the time.  Patch by Julian Gindi.

11 years agoIssue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with
Serhiy Storchaka [Tue, 26 Nov 2013 20:47:05 +0000 (22:47 +0200)]
Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with
virtual interface.  Original patch by Kent Frazier.

11 years agoIssue #11489: JSON decoder now accepts lone surrogates.
Serhiy Storchaka [Tue, 26 Nov 2013 19:25:15 +0000 (21:25 +0200)]
Issue #11489: JSON decoder now accepts lone surrogates.

11 years agoFix misuse of the bigmemtest decorator
Antoine Pitrou [Tue, 26 Nov 2013 19:00:34 +0000 (20:00 +0100)]
Fix misuse of the bigmemtest decorator

11 years agoIssue #19638: Skip large digit string tests on 32-bit platforms.
Mark Dickinson [Tue, 26 Nov 2013 17:02:46 +0000 (17:02 +0000)]
Issue #19638: Skip large digit string tests on 32-bit platforms.

11 years agoIssue #19638: Raise ValueError instead of crashing when converting billion character...
Mark Dickinson [Tue, 26 Nov 2013 16:38:25 +0000 (16:38 +0000)]
Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float.

11 years agoIssue #19794: Improved markup for True/False constants.
Serhiy Storchaka [Tue, 26 Nov 2013 15:32:03 +0000 (17:32 +0200)]
Issue #19794: Improved markup for True/False constants.

11 years agoIssue #19691: remove outdated mention about RuntimeError
Antoine Pitrou [Mon, 25 Nov 2013 18:08:32 +0000 (19:08 +0100)]
Issue #19691: remove outdated mention about RuntimeError

11 years agoFix suspicious markup and sort ignorelist.
Georg Brandl [Mon, 25 Nov 2013 07:34:24 +0000 (08:34 +0100)]
Fix suspicious markup and sort ignorelist.

11 years agoFix test_fcntl to run properly on systems that do not support the flags
Gregory P. Smith [Mon, 25 Nov 2013 04:45:27 +0000 (04:45 +0000)]
Fix test_fcntl to run properly on systems that do not support the flags
used in the "does the value get passed in properly" test.

11 years agofix docstring. extra \.
Gregory P. Smith [Mon, 25 Nov 2013 04:30:00 +0000 (04:30 +0000)]
fix docstring. extra \.

11 years agoFix test.test_support.bind_port() to not cause an error when Python was
Gregory P. Smith [Mon, 25 Nov 2013 03:42:15 +0000 (19:42 -0800)]
Fix test.test_support.bind_port() to not cause an error when Python was
compiled on a system with SO_REUSEPORT defined in the headers but run on
a system with an OS kernel that does not support that new socket option.

11 years ago#19620: Fix typo in docstring (noticed by Christopher Welborn).
Ezio Melotti [Mon, 25 Nov 2013 03:14:51 +0000 (05:14 +0200)]
#19620: Fix typo in docstring (noticed by Christopher Welborn).

11 years agoDocument that @property can incorporate a docstring from the getter method. Improve...
Raymond Hettinger [Sun, 24 Nov 2013 22:43:04 +0000 (14:43 -0800)]
Document that @property can incorporate a docstring from the getter method.  Improve readabilty with additional whitespace.

11 years agoFixed merging error in changeset 3912934e99ba (issue #19733).
Serhiy Storchaka [Sun, 24 Nov 2013 16:26:20 +0000 (18:26 +0200)]
Fixed merging error in changeset 3912934e99ba (issue #19733).

11 years agoDoc/Makefile: also do "make suspicious" during daily autobuild
Georg Brandl [Sun, 24 Nov 2013 15:17:54 +0000 (16:17 +0100)]
Doc/Makefile: also do "make suspicious" during daily autobuild

11 years agoAdd 2.7.7 uuids.
Martin v. Löwis [Sun, 10 Nov 2013 18:42:47 +0000 (19:42 +0100)]
Add 2.7.7 uuids.

11 years agoIssue #19308: fix the gdb plugin on gdbs linked with Python 3
Antoine Pitrou [Sat, 23 Nov 2013 16:40:36 +0000 (17:40 +0100)]
Issue #19308: fix the gdb plugin on gdbs linked with Python 3

11 years agoIssue #19733: Temporary disable test_image on MacOSX.
Serhiy Storchaka [Sat, 23 Nov 2013 13:22:20 +0000 (15:22 +0200)]
Issue #19733: Temporary disable test_image on MacOSX.

11 years agoPrint Tk patchlevel in Tk and Ttk tests in verbose mode (issue19654).
Serhiy Storchaka [Thu, 21 Nov 2013 17:24:04 +0000 (19:24 +0200)]
Print Tk patchlevel in Tk and Ttk tests in verbose mode (issue19654).

11 years agoIssue #19599: Use a separate pool for test_terminate().
Richard Oudkerk [Thu, 21 Nov 2013 16:35:12 +0000 (16:35 +0000)]
Issue #19599: Use a separate pool for test_terminate().

11 years agoIssue #19633: Fixed writing not compressed 16- and 32-bit wave files on
Serhiy Storchaka [Thu, 21 Nov 2013 09:04:37 +0000 (11:04 +0200)]
Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on
big-endian platforms.

Temporary forbidden test_unseekable_incompleted_write fornot compressed 16-
and 32-bit wave file  on big-endian platforms.

11 years agoPrint Tk patchlevel in test_tcl in verbose mode (issue19654).
Serhiy Storchaka [Wed, 20 Nov 2013 15:44:38 +0000 (17:44 +0200)]
Print Tk patchlevel in test_tcl in verbose mode (issue19654).

11 years ago#19449: Handle non-string keys when generating 'fieldnames' error.
R David Murray [Tue, 19 Nov 2013 18:25:24 +0000 (13:25 -0500)]
#19449: Handle non-string keys when generating 'fieldnames' error.

Backport from 3.3 6e5afeada7ca.

11 years ago- Update config.{guess,sub} for new ports.
doko@ubuntu.com [Tue, 19 Nov 2013 07:54:06 +0000 (08:54 +0100)]
- Update config.{guess,sub} for new ports.

11 years agoIssue #19603: Use specific asserts in test_decr.
Serhiy Storchaka [Sun, 17 Nov 2013 21:39:24 +0000 (23:39 +0200)]
Issue #19603: Use specific asserts in test_decr.

11 years agoFix buildbot failure
Antoine Pitrou [Sun, 17 Nov 2013 20:27:20 +0000 (21:27 +0100)]
Fix buildbot failure

11 years agoFix indentation in doc example.
Ezio Melotti [Sun, 17 Nov 2013 20:07:48 +0000 (22:07 +0200)]
Fix indentation in doc example.

11 years agoIssue #19599: Increase sleep period.
Richard Oudkerk [Sun, 17 Nov 2013 17:45:16 +0000 (17:45 +0000)]
Issue #19599: Increase sleep period.

11 years agoFix handling of SystemExit and exit code. Patch by Brodie Rao.
Richard Oudkerk [Sun, 17 Nov 2013 17:24:11 +0000 (17:24 +0000)]
Fix handling of SystemExit and exit code.  Patch by Brodie Rao.

11 years agoIssue 16998: Clarify that += on a shared value is not atomic.
Richard Oudkerk [Sun, 17 Nov 2013 17:00:38 +0000 (17:00 +0000)]
Issue 16998: Clarify that += on a shared value is not atomic.

11 years agoIssue #19508: warn that ssl doesn't validate certificates by default
Antoine Pitrou [Sun, 17 Nov 2013 14:42:58 +0000 (15:42 +0100)]
Issue #19508: warn that ssl doesn't validate certificates by default

11 years agoIssue #19606: Use specific asserts in cookielib tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:47:02 +0000 (13:47 +0200)]
Issue #19606: Use specific asserts in cookielib tests.

11 years agoIssue #19607: Use specific asserts in weakref tests.
Serhiy Storchaka [Sun, 17 Nov 2013 11:20:50 +0000 (13:20 +0200)]
Issue #19607: Use specific asserts in weakref tests.

11 years agoIssue #19605: Use specific asserts in datetime tests
Serhiy Storchaka [Sun, 17 Nov 2013 11:03:21 +0000 (13:03 +0200)]
Issue #19605: Use specific asserts in datetime tests

11 years agoFix merge error in issue #19602.
Serhiy Storchaka [Sun, 17 Nov 2013 10:49:28 +0000 (12:49 +0200)]
Fix merge error in issue #19602.

11 years agoMerge heads
Serhiy Storchaka [Sun, 17 Nov 2013 10:31:29 +0000 (12:31 +0200)]
Merge heads

11 years ago#19238: fix typo in documentation.
Ezio Melotti [Sun, 17 Nov 2013 00:47:12 +0000 (02:47 +0200)]
#19238: fix typo in documentation.

11 years agoIssue #19604: Use specific asserts in array tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:44:57 +0000 (00:44 +0200)]
Issue #19604: Use specific asserts in array tests.

11 years agoIssue #19602: Use specific asserts in tkinter tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:43:03 +0000 (00:43 +0200)]
Issue #19602: Use specific asserts in tkinter tests.

11 years agoIssue #19601: Use specific asserts in sqlite3 tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:39:43 +0000 (00:39 +0200)]
Issue #19601: Use specific asserts in sqlite3 tests.

11 years agoIssue #19600: Use specific asserts in distutils tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:29:27 +0000 (00:29 +0200)]
Issue #19600: Use specific asserts in distutils tests.

11 years agoIssue #19594: Use specific asserts in unittest tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:15:09 +0000 (00:15 +0200)]
Issue #19594: Use specific asserts in unittest tests.

11 years agoIssue #19591: Use specific asserts in ctype tests.
Serhiy Storchaka [Sat, 16 Nov 2013 22:06:02 +0000 (00:06 +0200)]
Issue #19591: Use specific asserts in ctype tests.

11 years agoIssue #19590: Use specific asserts in email tests.
Serhiy Storchaka [Sat, 16 Nov 2013 10:56:05 +0000 (12:56 +0200)]
Issue #19590: Use specific asserts in email tests.

11 years agoIssue #12853: Correct NameError in distutils upload command.
Jason R. Coombs [Sat, 16 Nov 2013 01:08:22 +0000 (20:08 -0500)]
Issue #12853: Correct NameError in distutils upload command.

11 years agoIssue #19504: Used American spelling for 'customize'.
Vinay Sajip [Fri, 15 Nov 2013 20:54:15 +0000 (20:54 +0000)]
Issue #19504: Used American spelling for 'customize'.

11 years agoIssue #19523: Closed FileHandler leak which occurred when delay was set.
Vinay Sajip [Fri, 15 Nov 2013 20:39:33 +0000 (20:39 +0000)]
Issue #19523: Closed FileHandler leak which occurred when delay was set.

11 years agoIssue #19592: Use specific asserts in lib2to3 tests.
Serhiy Storchaka [Thu, 14 Nov 2013 21:49:14 +0000 (23:49 +0200)]
Issue #19592: Use specific asserts in lib2to3 tests.

11 years agoa post-2.7.6 world
Benjamin Peterson [Sun, 10 Nov 2013 07:47:17 +0000 (02:47 -0500)]
a post-2.7.6 world

11 years agomerge 2.7.6 release branch
Benjamin Peterson [Sun, 10 Nov 2013 07:46:48 +0000 (02:46 -0500)]
merge 2.7.6 release branch

11 years agoAdded tag v2.7.6 for changeset 3a1db0d2747e
Benjamin Peterson [Sun, 10 Nov 2013 07:36:35 +0000 (02:36 -0500)]
Added tag v2.7.6 for changeset 3a1db0d2747e

11 years ago2.7.6 final v2.7.6
Benjamin Peterson [Sun, 10 Nov 2013 07:36:30 +0000 (02:36 -0500)]
2.7.6 final

11 years agoIssue #1575020: Fixed support of 24-bit wave files on big-endian platforms.
Serhiy Storchaka [Sat, 9 Nov 2013 21:09:44 +0000 (23:09 +0200)]
Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms.

11 years agoFix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).
Serhiy Storchaka [Sat, 9 Nov 2013 19:15:26 +0000 (21:15 +0200)]
Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085).

11 years ago#19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5...
Ezio Melotti [Thu, 7 Nov 2013 16:31:36 +0000 (18:31 +0200)]
#19480: HTMLParser now accepts all valid start-tag names as defined by the HTML5 standard.

11 years agobackport #18985: Improve fcntl documentation.
R David Murray [Thu, 7 Nov 2013 15:52:53 +0000 (10:52 -0500)]
backport #18985: Improve fcntl documentation.