Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
12ebefc9d3b7268d17d4a042767f712c46d03dfe
/
Lib
12ebefc
Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError.
by Eric V. Smith
· 14 years ago
0b44795
Close the call queue in concurrent.futures.ProcessPoolExecutor when
by Antoine Pitrou
· 14 years ago
f7f5475
Use test.script_helper in test_pydoc
by Antoine Pitrou
· 14 years ago
a6e81a2
test_pydoc needs to cleanup after itself
by Antoine Pitrou
· 14 years ago
707f228
Try harder to reap dangling threads in test.support.reap_threads().
by Antoine Pitrou
· 14 years ago
c081c0c
Issue #12573: Add resource checks for dangling Thread and Process objects.
by Antoine Pitrou
· 14 years ago
b8298a0
Merge
by Antoine Pitrou
· 14 years ago
ff35050
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
by Antoine Pitrou
· 14 years ago
8cdc40e
Issue #11603: Fix a crash when __str__ is rebound as __repr__.
by Antoine Pitrou
· 14 years ago
5805919
merge heads
by Benjamin Peterson
· 14 years ago
5afa03a
catch nasty exception classes with __new__ that doesn't return a exception (closes #11627)
by Benjamin Peterson
· 14 years ago
9470ab4
Make sure to reap worker threads and processes at the end of test_concurrent_futures
by Antoine Pitrou
· 14 years ago
1f0ccfa
Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.
by Charles-François Natali
· 14 years ago
e228130
Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.
by Charles-François Natali
· 14 years ago
eef80b6
this should be an identity test
by Benjamin Peterson
· 14 years ago
5702ae6
Issue #12250: test_socketserver uses a timeout of 60 seconds instead of 20
by Victor Stinner
· 14 years ago
7ebb706
Restore the global state of the log vars, so that test_cgi can be run twice without failures.
by Ezio Melotti
· 14 years ago
6e18e04
carefully cleanup pointer cache after creating struct pointers
by Benjamin Peterson
· 14 years ago
58e3350
Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64'
by Ned Deily
· 14 years ago
6636121
Close #4376: ctypes now supports nested structures in a endian different than
by Victor Stinner
· 14 years ago
34b2b26
this can be done without a custom dict (also fixes #12544)
by Benjamin Peterson
· 14 years ago
84f1b17
Issue #12149: Update the method cache after a type's dictionnary gets
by Antoine Pitrou
· 14 years ago
00ebeb5
Merge 3.2.1 release clone into main repo.
by Georg Brandl
· 14 years ago
cd0dc16
Bump version to 3.2.1.
by Georg Brandl
· 14 years ago
4875c46
Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
by Antoine Pitrou
· 14 years ago
9163c47
Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary
by Antoine Pitrou
· 14 years ago
95531ea
Avoid failing in test_robotparser when mueblesmoraleda.com is flaky and
by Antoine Pitrou
· 14 years ago
3aba498
Avoid failing in test_urllibnet.test_bad_address when some overzealous
by Antoine Pitrou
· 14 years ago
72fff04
Avoid failing in test_urllibnet.test_bad_address when some overzealous
by Antoine Pitrou
· 14 years ago
b9ac25d
Issue #12440: When testing whether some bits in SSLContext.options can be
by Antoine Pitrou
· 14 years ago
f6cbdc2
Issue #8716: Instead of relying on Aqua Tk exceptions to detect lack of
by Ned Deily
· 14 years ago
1848db8
Issue #12493: skip test_communicate_eintr() if signal.SIGALRM is missing
by Victor Stinner
· 14 years ago
91e0877
Issue #12451: pydoc: html_getfile() now uses tokenize.open() to support Python
by Victor Stinner
· 14 years ago
2cfb6f3
Issue #12493: subprocess: communicate() handles EINTR
by Victor Stinner
· 14 years ago
e2d5190
Issue #12497: Install test/data to prevent failures of the various codecmaps
by Ned Deily
· 14 years ago
bfd1edd
Merge 3.2.1 release clone changes into main 3.2 branch after 3.2.1rc2 release.
by Georg Brandl
· 14 years ago
e40b3aa
Issue #12469: Run "wakeup" signal tests in subprocess to run the test in a
by Victor Stinner
· 14 years ago
4479841
Issue #12429: Skip interrupted write tests on FreeBSD <= 7
by Victor Stinner
· 14 years ago
cd1aa0d
Issue #12429: Skip interrupted write tests on FreeBSD <= 7
by Victor Stinner
· 14 years ago
4143535
Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to run
by Ned Deily
· 14 years ago
9ebe08d
Fix closes issue12471 - wrong TypeError message when '%i' format spec was used.
by Senthil Kumaran
· 14 years ago
c8763b9
Fix closes issue issue12470 - check for utime for the skipUnless condition.
by Senthil Kumaran
· 14 years ago
0c2dba5
Fix closes issue issue12470 - check for utime for the skipUnless condition.
by Senthil Kumaran
· 14 years ago
b1b25f0
Issue #12467: warnings: fix a race condition if a warning is emitted at
by Victor Stinner
· 14 years ago
8b0508e
Issue #12467: warnings: fix a race condition if a warning is emitted at
by Victor Stinner
· 14 years ago
80dffef
Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg.
by Senthil Kumaran
· 14 years ago
aa90e7c
Fix closes issue12438 - idlelib.PyShell's showformatwarning method was passing an incorrect arg.
by Senthil Kumaran
· 14 years ago
7079240
Fix closes issue12432 - remove the unused sys from glob.py
by Senthil Kumaran
· 14 years ago
e975af6
Issue #12451: pydoc: importfile() now opens the Python script in binary mode,
by Victor Stinner
· 14 years ago
6c47102
Issue #12451: runpy: run_path() now opens the Python script in binary mode,
by Victor Stinner
· 14 years ago
bbdc08e
Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead
by Victor Stinner
· 14 years ago
ac91341
never retain a generator's caller's exception state on the generator after a yield/return
by Benjamin Peterson
· 14 years ago
d2ed630
merge heads
by Benjamin Peterson
· 14 years ago
83195c3
restore a generator's caller's exception state both on yield and (last) return
by Benjamin Peterson
· 14 years ago
d4fa7ed
Bump to 3.2.1rc2.
by Georg Brandl
· 14 years ago
fa76ceb
Update pydoc topics.
by Georg Brandl
· 14 years ago
a4a0406
Merge issue #12352: Fix a deadlock in multiprocessing.Heap when a block is
by Charles-François Natali
· 14 years ago
778db49
Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
by Charles-François Natali
· 14 years ago
ee1a7cb
#11873: another try at fixing the regex, courtesy of Victor Stinner
by R David Murray
· 14 years ago
a3bb2f5
#11873: fix test regex so it covers windows os.sep as well.
by R David Murray
· 14 years ago
dfde0d4
Issue #12363: increase the timeout of siginterrupt() tests
by Victor Stinner
· 14 years ago
8d64248
Issue #12363: improve siginterrupt() tests
by Victor Stinner
· 14 years ago
26d3186
Issue #11870: Skip test_threading.test_2_join_in_forked_process() on platforms
by Victor Stinner
· 14 years ago
bef7fdf
test_os: remove now useless TemporaryFileTests testcase
by Victor Stinner
· 14 years ago
98b3722
test_os: add TemporaryFileTests to the testcase list
by Victor Stinner
· 14 years ago
71cbafb
Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
by Antoine Pitrou
· 14 years ago
a6d2c76
Issue #12451: Open files in binary mode in some tests when the text file is not
by Victor Stinner
· 14 years ago
eaf399e
Issue #12451: The XInclude default loader of xml.etree now decodes files from
by Victor Stinner
· 14 years ago
12b8d14
Issue #12451: doctest.debug_script() doesn't create a temporary file anymore to
by Victor Stinner
· 14 years ago
e6c910e
Issue #12451: pydoc.synopsis() now reads the encoding cookie if available, to
by Victor Stinner
· 14 years ago
dc9b1ea
Issue #12451: distutils now opens the setup script in binary mode to read the
by Victor Stinner
· 14 years ago
fcc2a21
Issue #12400: regrtest.runtest() uses stream.seek(0) before .truncate()
by Victor Stinner
· 14 years ago
592f679
Issue #12400: test_zipimport_support doesn't restore original sys.stdout anymore
by Victor Stinner
· 14 years ago
85b3a49
Issue #12400: runtest() truncates the StringIO stream before a new test
by Victor Stinner
· 14 years ago
125b2ba
Issue #12400: Add missing import (os) to test_kqueue
by Victor Stinner
· 14 years ago
bddc4d4
Issue #12400: test.support.run_doctest() doesn't change sys.stdout anymore
by Victor Stinner
· 14 years ago
ea95de7
Issue #12400: regrtest, force verbose mode to True with option -W
by Victor Stinner
· 14 years ago
8313d6a
Issue #12400: runtest() reuses the same io.StringIO instance for all calls
by Victor Stinner
· 14 years ago
46b2091
Issue #12400: don't use sys.stderr in test_kqueue because it may be replaced by
by Victor Stinner
· 14 years ago
bd98f93
Issue #12400: remove unused variable
by Victor Stinner
· 14 years ago
a7c33e5
Issue #12400: regrtest -W doesn't rerun the tests twice anymore, but captures
by Victor Stinner
· 14 years ago
a8f8b50
Issue #9516: Change distutils to no longer globally attempt to check and
by Ned Deily
· 14 years ago
d13007f
Issue #9516: Correct and expand OS X deployment target tests in distutils
by Ned Deily
· 14 years ago
58f27b2
Issue #12141: Install a copy of template C module file so that
by Ned Deily
· 14 years ago
3eb67d5
Issue #8746: Correct faulty configure checks so that os.chflags() and
by Ned Deily
· 14 years ago
11f00f3
Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
by Ned Deily
· 14 years ago
68b543a
fix ws
by Benjamin Peterson
· 14 years ago
6ccfe85
add more ast tests (closes #11302)
by Benjamin Peterson
· 14 years ago
0f93d3d
strip trailing ws
by Benjamin Peterson
· 14 years ago
afa44a8
update profile license (closes #12417)
by Benjamin Peterson
· 14 years ago
8d77069
update profile license (closes #12417)
by Benjamin Peterson
· 14 years ago
038018a
Issue #4608: urllib.request.urlopen does not return an iterable object
by Raymond Hettinger
· 14 years ago
7079719
Issue 11802: filecmp cache was growing without bound.
by Raymond Hettinger
· 14 years ago
eceebeb
Issue #12408: Fix relative import in test_future5.py. Thanks Cesare Di Mauro.
by Mark Dickinson
· 14 years ago
5279fb9
Code simplification suggested by Sven Marnach.
by Raymond Hettinger
· 14 years ago
e697e37
#10206: add test for previously fixed bug.
by R David Murray
· 14 years ago
66f7d66
Issue #11223: skip also test_rlock_acquire_interruption() on FreeBSD6
by Victor Stinner
· 14 years ago
f25ae48
Issue #11223: skip test_lock_acquire_interruption() on FreeBSD6
by Victor Stinner
· 14 years ago
62d5118
Issue #12383: skip test_empty_env() of subprocess on Windows
by Victor Stinner
· 14 years ago
237e5cb
Issue #12383: fix test_empty_env() of subprocess on Mac OS X
by Victor Stinner
· 14 years ago
Next »