Eli Bendersky
|
c4e98a6a9b
|
Cleanup more old ET library leftovers
|
2013-05-19 09:24:43 -07:00 |
|
Eli Bendersky
|
46955b2d30
|
Issue #17988: remove unused alias for Element and rename the used one
Renaming to _Element_Py for clarity and moving it to a more logical location.
_ElementInterface OTOH is unused and is therefore removed.
Close #17988
|
2013-05-19 09:20:50 -07:00 |
|
Eli Bendersky
|
3a4fbd8241
|
_elementtree.XMLParser._setevents should support any sequence, not just tuples
Also clean up some code around this
|
2013-05-19 09:01:49 -07:00 |
|
Antoine Pitrou
|
5b6616dee3
|
Try to make test more reliable (saw some sporadic failures on buildbots)
|
2013-05-19 15:55:59 +02:00 |
|
Antoine Pitrou
|
dc49b2b88c
|
Try to make test more reliable (saw some sporadic failures on buildbots)
|
2013-05-19 15:55:40 +02:00 |
|
Antoine Pitrou
|
c52d113e28
|
Issue #11995: test_pydoc doesn't import all sys.path modules anymore.
|
2013-05-19 15:46:37 +02:00 |
|
Antoine Pitrou
|
916fc7bf28
|
Issue #11995: test_pydoc doesn't import all sys.path modules anymore.
|
2013-05-19 15:44:54 +02:00 |
|
Eli Bendersky
|
20c1cdd64a
|
Issue #17901: fix TreeBuilder construction for an explicit element_factory=None
Based on report and patch by Aaron Oakley.
|
2013-05-18 15:47:58 -07:00 |
|
Eli Bendersky
|
08231a9c6a
|
Issue #17901: fix TreeBuilder construction for an explicit element_factory=None
Based on report and patch by Aaron Oakley.
|
2013-05-18 15:47:16 -07:00 |
|
Vinay Sajip
|
10e8c49a11
|
Re-enabled skipped test.
|
2013-05-18 10:19:54 -07:00 |
|
Richard Oudkerk
|
850800f15e
|
Merge.
|
2013-05-18 18:13:16 +01:00 |
|
Richard Oudkerk
|
90a24270f8
|
Close file before reopening to keep Windows happy in test_sax.
|
2013-05-18 18:11:30 +01:00 |
|
Antoine Pitrou
|
31fb419908
|
Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using certificates with many wildcards (CVE-2013-2099).
|
2013-05-18 17:59:12 +02:00 |
|
Antoine Pitrou
|
636f93c63b
|
Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using certificates with many wildcards (CVE-2013-2099).
|
2013-05-18 17:56:42 +02:00 |
|
Raymond Hettinger
|
163e9821b4
|
Undo the deprecation of _asdict().
Backed out changeset c4ca39bece9d
|
2013-05-18 00:05:20 -07:00 |
|
Raymond Hettinger
|
4e0172fd9a
|
Deprecate nametuple._asdict()
|
2013-05-17 17:14:27 -07:00 |
|
Benjamin Peterson
|
4d94474ba3
|
rewrite the parsing of field names to be more consistent wrt recursive expansion
|
2013-05-17 18:22:31 -05:00 |
|
Benjamin Peterson
|
48953632df
|
merge 3.3
|
2013-05-17 17:35:28 -05:00 |
|
Benjamin Peterson
|
d2b58a9880
|
only recursively expand in the format spec (closes #17644)
|
2013-05-17 17:34:30 -05:00 |
|
Benjamin Peterson
|
a29ac45200
|
reset __class__, so multiple runs don't fail (closes #17999)
|
2013-05-17 11:33:26 -05:00 |
|
Serhiy Storchaka
|
fff61f2cd3
|
Issue #14596: The struct.Struct() objects now use more compact implementation.
|
2013-05-17 10:49:44 +03:00 |
|
Giampaolo Rodola'
|
3cb09064a3
|
Issue #17992: Add timeouts to asyncore and asynchat tests so that they won't accidentally hang.
|
2013-05-16 15:21:53 +02:00 |
|
Giampaolo Rodola'
|
0d4f08cee3
|
ftplib tests: provide a global socket's TIMEOUT variable and use it everywhere so that failing tests won't accidentally hang
|
2013-05-16 15:12:01 +02:00 |
|
Benjamin Peterson
|
1e93b06007
|
complain about "global __class__" in a class body (closes #17983)
|
2013-05-15 16:17:25 -05:00 |
|
Benjamin Peterson
|
312595ce3a
|
hide the __class__ closure from the class body (#12370)
|
2013-05-15 15:26:42 -05:00 |
|
Benjamin Peterson
|
e1b4cbc422
|
when arguments are cells clear the locals slot (backport of #17927)
|
2013-05-14 22:31:26 -05:00 |
|
Antoine Pitrou
|
9396356948
|
Backout c89febab4648 following private feedback by Guido.
(Issue #17807: Generators can now be finalized even when they are part of a reference cycle)
|
2013-05-14 20:37:52 +02:00 |
|
Antoine Pitrou
|
e1970b8182
|
Fix ResourceWarnings in test_sax
|
2013-05-13 22:35:38 +02:00 |
|
Antoine Pitrou
|
2adb6fe246
|
Fix ResourceWarnings in test_sax
|
2013-05-13 22:34:21 +02:00 |
|
Benjamin Peterson
|
159ae41da6
|
when an argument is a cell, set the local copy to NULL (see #17927)
|
2013-05-12 18:16:06 -05:00 |
|
Serhiy Storchaka
|
3068aed92b
|
Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
characters() and ignorableWhitespace() methods. Original patch by Sebastian
Ortiz Vasquez.
|
2013-05-12 17:31:59 +03:00 |
|
Serhiy Storchaka
|
3eab6b363a
|
Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
characters() and ignorableWhitespace() methods. Original patch by Sebastian
Ortiz Vasquez.
|
2013-05-12 17:31:16 +03:00 |
|
Georg Brandl
|
2665f21866
|
merge with 3.3
|
2013-05-12 12:08:05 +02:00 |
|
Georg Brandl
|
b3bd624a55
|
Back out patch for #1159051, which caused backwards compatibility problems.
|
2013-05-12 11:57:26 +02:00 |
|
Georg Brandl
|
64949fa20e
|
merge with 3.2
|
2013-05-12 11:52:22 +02:00 |
|
Georg Brandl
|
c502df4e3e
|
Issue #17915: Fix interoperability of xml.sax with file objects returned by
codecs.open().
|
2013-05-12 11:41:12 +02:00 |
|
Georg Brandl
|
93b061bc3e
|
Issue #1159051: Back out a fix for handling corrupted gzip files that
broke backwards compatibility.
|
2013-05-12 11:29:27 +02:00 |
|
Vinay Sajip
|
43473e3680
|
Diagnostics collected, test disabled for now.
|
2013-05-12 00:18:02 +01:00 |
|
Vinay Sajip
|
caf9eb8ada
|
Re-enabled test with more diagnostics.
|
2013-05-12 00:04:58 +01:00 |
|
Benjamin Peterson
|
fc6f4cd398
|
merge 3.3
|
2013-05-11 16:29:11 -05:00 |
|
Benjamin Peterson
|
aa6f688bd4
|
only close non-None files
|
2013-05-11 16:29:03 -05:00 |
|
Benjamin Peterson
|
2e8457d01c
|
remove unused import
|
2013-05-11 16:12:57 -05:00 |
|
Benjamin Peterson
|
2943cdb5eb
|
simplify #17947 test with weakrefs
|
2013-05-11 16:10:52 -05:00 |
|
Guido van Rossum
|
6832c81d5d
|
#17927: Keep frame from referencing cell-ified arguments.
|
2013-05-10 08:47:42 -07:00 |
|
Ezio Melotti
|
79ec9f0ec9
|
#17809: merge with 3.3.
|
2013-05-09 15:24:30 +03:00 |
|
Ezio Melotti
|
ce82d57c74
|
#17809: fix a test failure in test_expanduser when $HOME has a trailing /. Patch by Kubilay Kocak.
|
2013-05-09 15:19:45 +03:00 |
|
Serhiy Storchaka
|
b3c5d85680
|
Issue #16601: Restarting iteration over tarfile no more continues from where
it left off. Patch by Michael Birtwell.
|
2013-05-09 14:36:58 +03:00 |
|
Serhiy Storchaka
|
263fab94ee
|
Issue #16601: Restarting iteration over tarfile no more continues from where
it left off. Patch by Michael Birtwell.
|
2013-05-09 14:22:26 +03:00 |
|
Antoine Pitrou
|
04e70d19e7
|
Issue #17807: Generators can now be finalized even when they are part of a reference cycle.
|
2013-05-08 18:12:35 +02:00 |
|
Ezio Melotti
|
d62a514386
|
#17877: merge with 3.3.
|
2013-05-08 11:16:33 +03:00 |
|