]> granicus.if.org Git - python/log
python
11 years agoUpdate test.outstanding_bugs.py
Zachary Ware [Fri, 20 Dec 2013 19:25:53 +0000 (13:25 -0600)]
Update test.outstanding_bugs.py

11 years agoUpdate test.outstanding_bugs.py
Zachary Ware [Fri, 20 Dec 2013 19:25:07 +0000 (13:25 -0600)]
Update test.outstanding_bugs.py

11 years agoIssue #20034: Updated alias mapping to most recent locale.alias file
Serhiy Storchaka [Fri, 20 Dec 2013 16:50:32 +0000 (18:50 +0200)]
Issue #20034: Updated alias mapping to most recent locale.alias file
from X.org distribution using makelocalealias.py.

11 years agoIssue #20034: Updated alias mapping to most recent locale.alias file
Serhiy Storchaka [Fri, 20 Dec 2013 16:23:26 +0000 (18:23 +0200)]
Issue #20034: Updated alias mapping to most recent locale.alias file
from X.org distribution using makelocalealias.py.

11 years agoIssue #19946: use public API for multiprocessing start methods
Nick Coghlan [Fri, 20 Dec 2013 12:14:03 +0000 (22:14 +1000)]
Issue #19946: use public API for multiprocessing start methods

This should appease the OpenIndiana buildbot.

Also lengthened the worst case timeout to try to eliminate
the inconsistent failure on one of the Windows 7 buildbots.

11 years agoasyncio: Clean up formatting.
Guido van Rossum [Thu, 19 Dec 2013 21:49:32 +0000 (13:49 -0800)]
asyncio: Clean up formatting.

11 years agoClose #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in
Victor Stinner [Thu, 19 Dec 2013 21:42:40 +0000 (22:42 +0100)]
Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in
Python 3.4 to log "uncatched" exceptions, instead of the dedicated
_TracebackLogger class.

11 years agoShorten lines.
Guido van Rossum [Thu, 19 Dec 2013 20:47:38 +0000 (12:47 -0800)]
Shorten lines.

11 years agoNull merge
Serhiy Storchaka [Thu, 19 Dec 2013 20:32:40 +0000 (22:32 +0200)]
Null merge

11 years agoDon't use sebTest() in tests for issue #5815.
Serhiy Storchaka [Thu, 19 Dec 2013 20:31:46 +0000 (22:31 +0200)]
Don't use sebTest() in tests for issue #5815.

11 years agoNull merge with 3.3.
Zachary Ware [Thu, 19 Dec 2013 19:47:40 +0000 (13:47 -0600)]
Null merge with 3.3.
The empty tests should be implemented on this branch.

11 years agoIssue #19683: Removed empty tests from test_minidom. Patch by Ajitesh Gupta.
Zachary Ware [Thu, 19 Dec 2013 19:44:56 +0000 (13:44 -0600)]
Issue #19683: Removed empty tests from test_minidom.  Patch by Ajitesh Gupta.

11 years agoMerge with 3.3
Serhiy Storchaka [Thu, 19 Dec 2013 19:24:06 +0000 (21:24 +0200)]
Merge with 3.3

11 years agoIssue #5815: Fixed support for locales with modifiers. Fixed support for
Serhiy Storchaka [Thu, 19 Dec 2013 19:21:40 +0000 (21:21 +0200)]
Issue #5815: Fixed support for locales with modifiers.  Fixed support for
locale encodings with hyphens.

11 years agoIssue #5815: Fixed support for locales with modifiers. Fixed support for
Serhiy Storchaka [Thu, 19 Dec 2013 19:21:25 +0000 (21:21 +0200)]
Issue #5815: Fixed support for locales with modifiers.  Fixed support for
locale encodings with hyphens.

11 years agoFix the C definition of the sys._debugmallocstats() function: the function has
Victor Stinner [Thu, 19 Dec 2013 16:16:42 +0000 (17:16 +0100)]
Fix the C definition of the sys._debugmallocstats() function: the function has
no parameter

11 years ago(Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now
Victor Stinner [Thu, 19 Dec 2013 15:47:25 +0000 (16:47 +0100)]
(Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now
raise a ValueError if num is negative (instead of raising a SystemError).

11 years agoIssue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a
Victor Stinner [Thu, 19 Dec 2013 15:47:04 +0000 (16:47 +0100)]
Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a
ValueError if num is negative (instead of raising a SystemError).

11 years agoMerge heads
Victor Stinner [Thu, 19 Dec 2013 15:41:22 +0000 (16:41 +0100)]
Merge heads

11 years ago(Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid
Victor Stinner [Thu, 19 Dec 2013 15:39:00 +0000 (16:39 +0100)]
(Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid
isolation level (wrong type).

11 years agoIssue #20026: Fix the sqlite module to handle correctly invalid isolation level
Victor Stinner [Thu, 19 Dec 2013 15:38:03 +0000 (16:38 +0100)]
Issue #20026: Fix the sqlite module to handle correctly invalid isolation level
(wrong type).

11 years agoIssue #18829: csv.Dialect() now checks type for delimiter, escapechar and
Serhiy Storchaka [Thu, 19 Dec 2013 14:28:04 +0000 (16:28 +0200)]
Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
quotechar fields.  Original patch by Vajrasky Kok.

11 years agoIssue #18829: csv.Dialect() now checks type for delimiter, escapechar and
Serhiy Storchaka [Thu, 19 Dec 2013 14:27:18 +0000 (16:27 +0200)]
Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
quotechar fields.  Original patch by Vajrasky Kok.

11 years agoBetter assertion in PyObject_Call() to detect functions returning a result with
Victor Stinner [Thu, 19 Dec 2013 12:47:35 +0000 (13:47 +0100)]
Better assertion in PyObject_Call() to detect functions returning a result with
an exception set (invalid state).

11 years agoFix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clear
Victor Stinner [Thu, 19 Dec 2013 12:39:32 +0000 (13:39 +0100)]
Fix _Py_DisplaySourceLine(), if PyTokenizer_FindEncodingFilename() fails, clear
the exception to not call open() with an exception set.

11 years agoFix os.listdir(): _Py_dup() already raises an exception on error, no need to
Victor Stinner [Thu, 19 Dec 2013 12:24:49 +0000 (13:24 +0100)]
Fix os.listdir(): _Py_dup() already raises an exception on error, no need to
raise a new exception

11 years agoIssue #19946: appropriately skip new multiprocessing tests
Nick Coghlan [Thu, 19 Dec 2013 11:53:31 +0000 (21:53 +1000)]
Issue #19946: appropriately skip new multiprocessing tests

Thanks to Christian Heimes for noting the buildbot failures and
to Zachary Ware for providing the patch to make the new tests
play nice with both other platforms and unittest test discovery

11 years agoCloses #19902: Merged update from 3.3.
Vinay Sajip [Thu, 19 Dec 2013 11:51:19 +0000 (11:51 +0000)]
Closes #19902: Merged update from 3.3.

11 years agoIssue #19902: Added list of logging levels.
Vinay Sajip [Thu, 19 Dec 2013 11:50:24 +0000 (11:50 +0000)]
Issue #19902: Added list of logging levels.

11 years agoRemove some dead code in importlib, introduced with the PEP 451 patch.
Eric Snow [Thu, 19 Dec 2013 06:35:15 +0000 (23:35 -0700)]
Remove some dead code in importlib, introduced with the PEP 451 patch.

Early in the PEP 451 implementation some of the importlib loaders had
their own _get_spec() methods to simplify accommodating them.  However,
later implementations removed the need.  They simply failed to remove
this code at the same time. :)

11 years agomerge 3.3 (#20018)
Benjamin Peterson [Wed, 18 Dec 2013 21:37:03 +0000 (15:37 -0600)]
merge 3.3 (#20018)

11 years agoupdate url to spec (closes #20018)
Benjamin Peterson [Wed, 18 Dec 2013 21:35:18 +0000 (15:35 -0600)]
update url to spec (closes #20018)

11 years agoremove trailing spaces
Gregory P. Smith [Wed, 18 Dec 2013 19:27:21 +0000 (11:27 -0800)]
remove trailing spaces

11 years agoremove trailing spaces.
Gregory P. Smith [Wed, 18 Dec 2013 19:27:05 +0000 (11:27 -0800)]
remove trailing spaces.

11 years agoCloses #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Zachary Ware [Wed, 18 Dec 2013 18:22:35 +0000 (12:22 -0600)]
Closes #20005: Fix typo in operator docs.  Patch by Claudiu Popa.

11 years agoIssue #20005: Fix typo in operator docs. Patch by Claudiu Popa.
Zachary Ware [Wed, 18 Dec 2013 18:21:49 +0000 (12:21 -0600)]
Issue #20005: Fix typo in operator docs.  Patch by Claudiu Popa.

11 years agoIssue #19492: Silently skipped distutils tests now reported as skipped.
Serhiy Storchaka [Wed, 18 Dec 2013 14:45:24 +0000 (16:45 +0200)]
Issue #19492: Silently skipped distutils tests now reported as skipped.

11 years agoIssue #19492: Silently skipped distutils tests now reported as skipped.
Serhiy Storchaka [Wed, 18 Dec 2013 14:41:01 +0000 (16:41 +0200)]
Issue #19492: Silently skipped distutils tests now reported as skipped.

11 years agoMerge: #19855: uuid.get_node now looks on the PATH for executables on unix.
R David Murray [Wed, 18 Dec 2013 02:14:41 +0000 (21:14 -0500)]
Merge: #19855: uuid.get_node now looks on the PATH for executables on unix.

11 years ago#19855: uuid.get_node now looks on the PATH for executables on unix.
R David Murray [Wed, 18 Dec 2013 02:13:16 +0000 (21:13 -0500)]
#19855: uuid.get_node now looks on the PATH for executables on unix.

Patch by Serhiy Storchaka.

11 years agoIssue #20006: Fix sporadic failures in test_weakset.
Antoine Pitrou [Tue, 17 Dec 2013 23:32:02 +0000 (00:32 +0100)]
Issue #20006: Fix sporadic failures in test_weakset.

11 years agoIssue #20006: Fix sporadic failures in test_weakset.
Antoine Pitrou [Tue, 17 Dec 2013 23:28:36 +0000 (00:28 +0100)]
Issue #20006: Fix sporadic failures in test_weakset.

11 years agoRevert misled test change in f189da5bda26.
Antoine Pitrou [Tue, 17 Dec 2013 23:29:30 +0000 (00:29 +0100)]
Revert misled test change in f189da5bda26.

11 years agoIssue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Serhiy Storchaka [Tue, 17 Dec 2013 19:51:40 +0000 (21:51 +0200)]
Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Original patch by Simon Sapin.

11 years agoIssue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Serhiy Storchaka [Tue, 17 Dec 2013 19:50:02 +0000 (21:50 +0200)]
Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Original patch by Simon Sapin.

11 years agoIssue #16404: Add checks for return value of PyLong_FromLong() in
Serhiy Storchaka [Tue, 17 Dec 2013 13:12:46 +0000 (15:12 +0200)]
Issue #16404: Add checks for return value of PyLong_FromLong() in
sys.getwindowsversion() and ossaudiodev.setparameters().
Reported by Ned Batchelder.

11 years agoIssue #16404: Add checks for return value of PyLong_FromLong() in
Serhiy Storchaka [Tue, 17 Dec 2013 13:11:24 +0000 (15:11 +0200)]
Issue #16404: Add checks for return value of PyLong_FromLong() in
sys.getwindowsversion() and ossaudiodev.setparameters().
Reported by Ned Batchelder.

11 years agoFixed leak in sys.flags initialization.
Serhiy Storchaka [Tue, 17 Dec 2013 13:00:53 +0000 (15:00 +0200)]
Fixed leak in sys.flags initialization.

11 years agoFixed leak in sys.flags initialization.
Serhiy Storchaka [Tue, 17 Dec 2013 12:59:42 +0000 (14:59 +0200)]
Fixed leak in sys.flags initialization.

11 years agoClose #19946: use runpy as needed in multiprocessing
Nick Coghlan [Tue, 17 Dec 2013 12:17:26 +0000 (22:17 +1000)]
Close #19946: use runpy as needed in multiprocessing

- handles main files without a suffix
- handles main submodules properly
- adds test cases for the various kinds of __main__

11 years agoIssue #19713: Fix mistakes in the import page of language reference.
Eric Snow [Tue, 17 Dec 2013 06:10:50 +0000 (23:10 -0700)]
Issue #19713: Fix mistakes in the import page of language reference.

These mistakes were introduced by the initial PEP 451 merge.

11 years agoIssue #19713: Update importlib docs for module spec changes, including deprecations.
Eric Snow [Tue, 17 Dec 2013 06:06:52 +0000 (23:06 -0700)]
Issue #19713: Update importlib docs for module spec changes, including deprecations.

11 years agoIssue #20001: Add the SVG source of the pathlib-inheritance diagram to Hg
Eli Bendersky [Tue, 17 Dec 2013 05:13:40 +0000 (21:13 -0800)]
Issue #20001: Add the SVG source of the pathlib-inheritance diagram to Hg

11 years agoBackout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does not...
Victor Stinner [Mon, 16 Dec 2013 22:39:40 +0000 (23:39 +0100)]
Backout a1a05e2724dd: shutil.which(bytes) is a new feature and my patch does not work on Windows

11 years agotracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGE
Victor Stinner [Mon, 16 Dec 2013 22:06:19 +0000 (23:06 +0100)]
tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGE

11 years agotracemalloc: only use unsigned types to compute hash
Victor Stinner [Mon, 16 Dec 2013 22:05:13 +0000 (23:05 +0100)]
tracemalloc: only use unsigned types to compute hash

Commit to simplify the backport to python 2.7 and to make the code more
consistent.

11 years agoIssue #18283: shutil.which() now supports bytes argument, not only text argument.
Victor Stinner [Mon, 16 Dec 2013 21:48:48 +0000 (22:48 +0100)]
Issue #18283: shutil.which() now supports bytes argument, not only text argument.

11 years ago(Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() on
Victor Stinner [Mon, 16 Dec 2013 21:38:46 +0000 (22:38 +0100)]
(Merge 3.3) Close #19999: tolerate coarse time when testing time.monotonic() on
very busy/slow buildbot

11 years agoClose #19999: tolerate coarse time when testing time.monotonic() on very
Victor Stinner [Mon, 16 Dec 2013 21:36:50 +0000 (22:36 +0100)]
Close #19999: tolerate coarse time when testing time.monotonic() on very
busy/slow buildbot

11 years agomerge
Christian Heimes [Mon, 16 Dec 2013 20:17:02 +0000 (21:17 +0100)]
merge

11 years agoIssue #19919: Fix flacky SSL test. connect_ex() sometimes returns
Christian Heimes [Mon, 16 Dec 2013 20:16:45 +0000 (21:16 +0100)]
Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns
EWOULDBLOCK on Windows or VMs hosted on Windows.

11 years agoIssue #19919: Fix flacky SSL test. connect_ex() sometimes returns
Christian Heimes [Mon, 16 Dec 2013 20:15:44 +0000 (21:15 +0100)]
Issue #19919: Fix flacky SSL test. connect_ex() sometimes returns
EWOULDBLOCK on Windows or VMs hosted on Windows.

11 years agoMention specific exceptions instead of OSError where appropriate.
Antoine Pitrou [Mon, 16 Dec 2013 20:00:53 +0000 (21:00 +0100)]
Mention specific exceptions instead of OSError where appropriate.

11 years agoIssue #19921: When Path.mkdir() is called with parents=True, any missing parent is...
Antoine Pitrou [Mon, 16 Dec 2013 19:22:37 +0000 (20:22 +0100)]
Issue #19921: When Path.mkdir() is called with parents=True, any missing parent is created with the default permissions, ignoring the mode argument (mimicking the POSIX "mkdir -p" command).

Patch by Serhiy.

11 years agoIssue #19887: Improve the Path.resolve() algorithm to support certain symlink chains.
Antoine Pitrou [Mon, 16 Dec 2013 18:57:41 +0000 (19:57 +0100)]
Issue #19887: Improve the Path.resolve() algorithm to support certain symlink chains.

Original patch by Serhiy.

11 years agoIssue #19987: Merge with 3.3
Zachary Ware [Mon, 16 Dec 2013 15:05:44 +0000 (09:05 -0600)]
Issue #19987: Merge with 3.3

11 years agoIssue #19987: Re-write test_alias_fallback in test_winsound to have two
Zachary Ware [Mon, 16 Dec 2013 15:02:41 +0000 (09:02 -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 agoIssue #19987: disable test_winsound's test_alias_fallback test when no sound card
Christian Heimes [Mon, 16 Dec 2013 13:54:24 +0000 (14:54 +0100)]
Issue #19987: disable test_winsound's test_alias_fallback test when no sound card
is available. The test fails on Windows Server 2008.

11 years agomerge
Christian Heimes [Mon, 16 Dec 2013 13:35:58 +0000 (14:35 +0100)]
merge

11 years agoIssue #18215: Add script Tools/ssl/test_multiple_versions.py to compile and
Christian Heimes [Mon, 16 Dec 2013 13:35:39 +0000 (14:35 +0100)]
Issue #18215: Add script Tools/ssl/test_multiple_versions.py to compile and
run Python's unit tests with multiple versions of OpenSSL.

11 years agoNull merge
Serhiy Storchaka [Mon, 16 Dec 2013 13:17:33 +0000 (15:17 +0200)]
Null merge

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

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

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

* splitunc() no more return illegal result for paths with redundant slashes.
* splitunc() now correctly processes the 'İ' character
  (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
* Deprecation warnings now emitted for every use of splitunc().
* Added tests for splitunc().

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

* splitunc() no more return illegal result for paths with redundant slashes.
* splitunc() now correctly processes the 'İ' character
  (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).
* Deprecation warnings now emitted for every use of splitunc().
* Added tests for splitunc().

11 years agoMere.
Charles-François Natali [Mon, 16 Dec 2013 12:49:56 +0000 (13:49 +0100)]
Mere.

11 years agoMerge.
Charles-François Natali [Mon, 16 Dec 2013 12:49:38 +0000 (13:49 +0100)]
Merge.

11 years agoMerge.
Charles-François Natali [Mon, 16 Dec 2013 12:49:30 +0000 (13:49 +0100)]
Merge.

11 years agoMerge.
Charles-François Natali [Mon, 16 Dec 2013 12:49:19 +0000 (13:49 +0100)]
Merge.

11 years agoIssue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
Serhiy Storchaka [Mon, 16 Dec 2013 12:36:10 +0000 (14:36 +0200)]
Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).

11 years agoIssue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
Serhiy Storchaka [Mon, 16 Dec 2013 12:34:55 +0000 (14:34 +0200)]
Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character
(U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE).

11 years agoIssue #17919: add missing import of USHRT_MAX
Christian Heimes [Mon, 16 Dec 2013 12:28:20 +0000 (13:28 +0100)]
Issue #17919: add missing import of USHRT_MAX

11 years agoIssue #17919: add missing import of USHRT_MAX
Christian Heimes [Mon, 16 Dec 2013 12:27:16 +0000 (13:27 +0100)]
Issue #17919: add missing import of USHRT_MAX

11 years agoMerge.
Charles-François Natali [Mon, 16 Dec 2013 11:03:05 +0000 (12:03 +0100)]
Merge.

11 years agoMerge.
Charles-François Natali [Mon, 16 Dec 2013 11:02:42 +0000 (12:02 +0100)]
Merge.

11 years agoMerge: #19532: make compileall with no file/dir args respect -f and -q.
R David Murray [Mon, 16 Dec 2013 01:56:00 +0000 (20:56 -0500)]
Merge: #19532: make compileall with no file/dir args respect -f and -q.

11 years ago#19532: make compileall with no file/dir args respect -f and -q.
R David Murray [Mon, 16 Dec 2013 01:49:38 +0000 (20:49 -0500)]
#19532: make compileall with no file/dir args respect -f and -q.

Patch by Vajrasky Kok.

11 years agotest_ssl: skip tests when SNI is not available
Christian Heimes [Sun, 15 Dec 2013 20:49:17 +0000 (21:49 +0100)]
test_ssl: skip tests when SNI is not available

11 years agotest_poplib: skip stls_context test when SNI is not available
Christian Heimes [Sun, 15 Dec 2013 20:44:43 +0000 (21:44 +0100)]
test_poplib: skip stls_context test when SNI is not available

11 years agoMerge.
Stefan Krah [Sun, 15 Dec 2013 20:02:28 +0000 (21:02 +0100)]
Merge.

11 years agoMinor code clean-up. Keep the C-API all in one section.
Raymond Hettinger [Sun, 15 Dec 2013 19:56:14 +0000 (11:56 -0800)]
Minor code clean-up.  Keep the C-API all in one section.

11 years agoMerge from 3.3.
Stefan Krah [Sun, 15 Dec 2013 19:52:08 +0000 (20:52 +0100)]
Merge from 3.3.

11 years agoIssue #19986: Avoid an incorrect warning of older gcc versions.
Stefan Krah [Sun, 15 Dec 2013 19:45:08 +0000 (20:45 +0100)]
Issue #19986: Avoid an incorrect warning of older gcc versions.

11 years agofixed test_ftplib
Christian Heimes [Sun, 15 Dec 2013 18:50:13 +0000 (19:50 +0100)]
fixed test_ftplib

11 years agotest_imaplib: skip check_hostname test when SNI is not available
Christian Heimes [Sun, 15 Dec 2013 18:39:32 +0000 (19:39 +0100)]
test_imaplib: skip check_hostname test when SNI is not available

11 years agotest_ftplib: skip check_hostname test when SNI is not available
Christian Heimes [Sun, 15 Dec 2013 18:38:22 +0000 (19:38 +0100)]
test_ftplib: skip check_hostname test when SNI is not available

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:12:52 +0000 (19:12 +0100)]
Issue #19965: Make sure that Python-ast.h is properly taken into account in the
makefile.

11 years agoMerge.
Charles-François Natali [Sun, 15 Dec 2013 18:12:07 +0000 (19:12 +0100)]
Merge.

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:09:00 +0000 (19:09 +0100)]
Issue #19965: Make sure that Python-ast.h is properly taken into account in the
makefile.

11 years agoSkip some tests that require server name indication (SNI)
Christian Heimes [Sun, 15 Dec 2013 16:02:36 +0000 (17:02 +0100)]
Skip some tests that require server name indication (SNI)