summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue9374 - Generic parsing of query and fragment portion of urls for any schemeSenthil Kumaran2012-05-191-0/+9
|\ \ | |/
| * Issue9374 - Generic parsing of query and fragment portion of urls for any schemeSenthil Kumaran2012-05-191-0/+9
| |
* | #14798: pyclbr now raises ImportError instead of KeyError for missing packagesPetri Lehtinen2012-05-181-0/+5
|\ \ | |/
| * #14798: pyclbr now raises ImportError instead of KeyError for missing packagesPetri Lehtinen2012-05-181-0/+5
| |
* | Move private function _args_from_interpreter_flags() to subprocess.py, soAntoine Pitrou2012-05-181-2/+1
| | | | | | | | | | that it can be imported when threads are disabled. (followup to issue #12098)
* | #12098: Make multiprocessing's child processes inherit sys.flags on WindowsRichard Oudkerk2012-05-182-19/+36
| | | | | | | | Initial patch by Sergey Mezentsev.
* | Make the test completely clean up after itself.Antoine Pitrou2012-05-171-2/+4
| |
* | Issue #9260: A finer-grained import lock.Antoine Pitrou2012-05-173-3/+30
| | | | | | | | | | Most of the import sequence now uses per-module locks rather than the global import lock, eliminating well-known issues with threads and imports.
* | Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use ↵Antoine Pitrou2012-05-161-0/+7
| | | | | | | | | | | | the default certificate store. Initial patch by James Oakley.
* | Issue #14779: Get sizeof(void *) directly rather than relying on sysconfig.Stefan Krah2012-05-161-4/+2
| |
* | Issue #14693: Under non-Windows platforms, hashlib's fallback modules are ↵Antoine Pitrou2012-05-161-1/+3
| | | | | | | | always compiled, even if OpenSSL is present at build time.
* | merge headsGiampaolo Rodola'2012-05-162-4/+94
|\ \
| * \ Forward port additional tests from 2.7 (issue #14829).Antoine Pitrou2012-05-161-3/+44
| |\ \ | | |/
| | * Forward port additional tests from 2.7 (issue #14829).Antoine Pitrou2012-05-161-3/+44
| | |
| * | Merge from 3.2.Eric V. Smith2012-05-161-0/+3
| |\ \ | | |/
| | * Cleanup so subsequent tests won't fail. Needs to be moved into a support ↵Eric V. Smith2012-05-161-0/+3
| | | | | | | | | | | | routine (see 14715).
| * | Merge from 3.2.Eric V. Smith2012-05-161-1/+47
| |\ \ | | |/
| | * Issue #14817: Add rudimentary tests for pkgutil.extend_path.Eric V. Smith2012-05-161-1/+47
| | |
* | | #14807: fix BB failures on Windows - avoid to to rely too many details of ↵Giampaolo Rodola'2012-05-161-11/+22
|/ / | | | | | | the mode string.
* | merge headsGiampaolo Rodola'2012-05-152-1/+24
|\ \
| * | Add two more sorts to test_os.WalkTests I've missed beforeHynek Schlawack2012-05-151-0/+2
| | |
| * | merge headsSenthil Kumaran2012-05-151-0/+1
| |\ \
| | * | Sort file list in test_os.WalkTestsHynek Schlawack2012-05-151-0/+1
| | | | | | | | | | | | | | | | | | | | Adding new files into the tree lead to buildbot fails as the order wasn't deterministic.
| * | | Issue12541 - Add UserWarning for unquoted realmsSenthil Kumaran2012-05-151-5/+6
| |\ \ \ | | |/ / | |/| / | | |/
| | * Issue12541 - Add UserWarning for unquoted realmsSenthil Kumaran2012-05-151-5/+6
| | |
| * | merge headsSenthil Kumaran2012-05-151-1/+5
| |\ \
| | * | #14773: Fix os.fwalk() failing on dangling symlinksHynek Schlawack2012-05-151-1/+5
| | | |
| * | | merge from 3.2 - Issue #12541: Be lenient with quotes around Realm field of ↵Senthil Kumaran2012-05-151-0/+15
| |\ \ \ | | |/ / | |/| / | | |/ HTTP Basic Authentation in urllib2.
| | * Issue #12541: Be lenient with quotes around Realm field of HTTP Basic ↵Senthil Kumaran2012-05-151-0/+15
| | | | | | | | | | | | | | | | | | Authentation in urllib2. G: changed Misc/NEWS
* | | #14807: fix bb failure due to symlink test relying on hard-coded permissionsGiampaolo Rodola'2012-05-151-1/+1
|/ /
* | #14807: move undocumented tarfile.filemode() to stat.filemode(). Add ↵Giampaolo Rodola'2012-05-151-0/+55
| | | | | | | | tarfile.filemode alias with deprecation warning.
* | PEP 415: Implement suppression of __context__ display with an exception ↵Benjamin Peterson2012-05-153-12/+16
| | | | | | | | | | | | attribute This replaces the original PEP 409 implementation. See #14133.
* | Followup to issue #14157: respect the relative ordering of values produced ↵Antoine Pitrou2012-05-141-0/+5
|\ \ | |/ | | | | | | | | by time.strptime(). Patch by Hynek.
| * Followup to issue #14157: respect the relative ordering of values produced ↵Antoine Pitrou2012-05-141-0/+5
| | | | | | | | | | | | by time.strptime(). Patch by Hynek.
| * Issue #14662: Prevent shutil failures on OS X when destination does notNed Deily2012-05-111-0/+30
| | | | | | | | support chflag operations. (Patch by Hynek Schlawack)
* | Issue #14417: Mutating a dict during lookup now restarts the lookup instead ↵Antoine Pitrou2012-05-131-4/+3
| | | | | | | | of raising a RuntimeError (undoes issue #14205).
* | Issue #14532: Add a secure_compare() helper to the hmac module, to mitigateCharles-François Natali2012-05-131-1/+37
| | | | | | | | timing attacks. Patch by Jon Oberheide.
* | Issue #14366: Support lzma compression in zip files.Martin v. Löwis2012-05-132-2/+132
| | | | | | | | Patch by Serhiy Storchaka.
* | Remove a now worthless test.Brett Cannon2012-05-121-8/+0
| |
* | Try to fix test_shutil failure under Fedora - patch by Hynek.Antoine Pitrou2012-05-121-1/+1
| |
* | Issue #14779: Do not use get_config_var('SIZEOF_VOID_P') on OS X 64-/32-bitStefan Krah2012-05-121-3/+3
| | | | | | | | | | universal: it returns a meaningless result. Use sys.maxsize instead of platform.architecture as a fallback. Patch by Ned Deily.
* | Issue #14082: shutil.copy2() now copies extended attributes, if possible.Antoine Pitrou2012-05-123-19/+104
| | | | | | | | Patch by Hynek Schlawack.
* | Issue #13959: HaveBrett Cannon2012-05-112-9/+18
| | | | | | | | | | | | | | | | | | | | importlib.abc.FileLoader.load_module()/get_filename() and importlib.machinery.ExtensionFileLoader.load_module() have their single argument be optional as the loader's constructor has all the ncessary information. This allows for the deprecation of imp.load_source()/load_compile()/load_package().
* | Issue #14662: Prevent shutil failures on OS X when destination does notNed Deily2012-05-111-0/+29
| | | | | | | | support chflag operations. (Patch by Hynek Schlawack)
* | Issue #14157: Fix time.strptime failing without a year on February 29th.Antoine Pitrou2012-05-101-0/+3
|\ \ | |/ | | | | Patch by Hynek Schlawack.
| * Issue #14157: Fix time.strptime failing without a year on February 29th.Antoine Pitrou2012-05-101-0/+3
| | | | | | | | Patch by Hynek Schlawack.
* | Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2Richard Oudkerk2012-05-101-16/+28
| | | | | | | | | | | | | | | | In Python 3.2 and earlier, Process.join() and Connection.poll() treated negative timeouts as zero timeouts. Earlier versions from the 3.3 line of development treat them as infinite timeouts. The patch reverts to the old behaviour.
* | MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when ↵Jesus Cea2012-05-101-0/+1
|\ \ | |/ | | | | HOME is '/'
| * Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME ↵Jesus Cea2012-05-101-0/+1
| | | | | | | | is '/'
* | unicode_writer_finish() checks string consistencyVictor Stinner2012-05-091-0/+4
| |