Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.3.2
/
Misc
84fc4ba
Closes #17962: Build with OpenSSL 1.0.1e on Windows.
by Georg Brandl
· 12 years ago
v3.3.2
997d05d
merge
by Georg Brandl
· 12 years ago
3eab6b3
Issue #17606: Fixed support of encoded byte strings in the XMLGenerator
by Serhiy Storchaka
· 12 years ago
88f4dd6
bump to 3.3.2
by Georg Brandl
· 12 years ago
521ed52
Closes issue #17732: ignore install-directory specific options in
by Georg Brandl
· 12 years ago
b3bd624
Back out patch for #1159051, which caused backwards compatibility problems.
by Georg Brandl
· 12 years ago
64949fa
merge with 3.2
by Georg Brandl
· 12 years ago
a9417d7
merge with 3.2
by Georg Brandl
· 12 years ago
c502df4
Issue #17915: Fix interoperability of xml.sax with file objects returned by
by Georg Brandl
· 12 years ago
93b061b
Issue #1159051: Back out a fix for handling corrupted gzip files that
by Georg Brandl
· 12 years ago
831ae84
merge heads
by Georg Brandl
· 12 years ago
0d4931e
prevent IDLE from trying to close when sys.stdin is reassigned (#17838)
by Benjamin Peterson
· 12 years ago
feb5149
-Wformat is needed by gcc 4.8 (closes #17547)
by Benjamin Peterson
· 12 years ago
8b0e984
Issue #17237: Fix crash in the ASCII decoder on m68k.
by Antoine Pitrou
· 12 years ago
173d410
#17841: remove missing codecs aliases from the documentation. Patch by Thomas Fenzl.
by Ezio Melotti
· 12 years ago
ce82d57
#17809: fix a test failure in test_expanduser when $HOME has a trailing /. Patch by Kubilay Kocak.
by Ezio Melotti
· 12 years ago
263fab9
Issue #16601: Restarting iteration over tarfile no more continues from where
by Serhiy Storchaka
· 12 years ago
9c939bc
#17871: fix unittest.TextTestRunner signature in the docs. Patch by Yogesh Chaudhari.
by Ezio Melotti
· 12 years ago
a7f7deb
Issue #17289: The readline module now plays nicer with external modules or applications changing the rl_completer_word_break_characters global variable.
by Antoine Pitrou
· 12 years ago
002a77d
Issue #12181: select module: Fix struct kevent definition on OpenBSD 64-bit
by Charles-Francois Natali
· 12 years ago
d08b210
#17833: fix test_gdb failures seen on PPC64 Linux in test_threads (test.test_gdb.PyBtTests)
by David Malcolm
· 12 years ago
9bc7b79
#13495: Avoid loading the color delegator twice in IDLE.
by Roger Serwy
· 12 years ago
5b1ab24
#17798: Allow IDLE to edit new files when specified on command line.
by Roger Serwy
· 12 years ago
c8c952c
Issue #14173: Avoid crashing when reading a signal handler during interpreter shutdown.
by Antoine Pitrou
· 12 years ago
957a23b
Issue #17408: Avoid using an obsolete instance of the copyreg module when the interpreter is shutdown and then started again.
by Antoine Pitrou
· 12 years ago
28faf03
#7855: Add tests for ctypes/winreg for issues found in IronPython. Initial patch by Dino Viehland.
by Ezio Melotti
· 12 years ago
59115aa
Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.
by Serhiy Storchaka
· 12 years ago
9d0f772
Issue #15902: Fix imp.load_module() to accept None as a file when
by Brett Cannon
· 12 years ago
b98dcc1
Issue #15535: Fix pickling of named tuples.
by Raymond Hettinger
· 12 years ago
8e596a7
#17802: Fix an UnboundLocalError in html.parser. Initial tests by Thomas Barlow.
by Ezio Melotti
· 12 years ago
81641d6
Issue #17712: Fix test_gdb failures on Ubuntu 13.04.
by Antoine Pitrou
· 12 years ago
5d6620d
fix the news entry, the description in 3.3 should be different
by Gregory P. Smith
· 12 years ago
fde108b
news entry
by Gregory P. Smith
· 12 years ago
cf86d94
news entry
by Gregory P. Smith
· 12 years ago
fe1b22a
ignore errors when trying to fetch sys.stdin.encoding (closes #17863)
by Benjamin Peterson
· 12 years ago
7d11004
raise an ImportError (rather than fatal) when __import__ is not found in __builtins__ (closes #17867)
by Benjamin Peterson
· 12 years ago
5a4c233
Issue #17358: imp.load_source() and load_compiled() should now return
by Brett Cannon
· 12 years ago
5aea37a
#7152: Clarify that ProxyHandler is added only if proxy settings are detected.
by R David Murray
· 12 years ago
a9217a4
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
by Serhiy Storchaka
· 12 years ago
ba2f8be
Issue #17843: Remove bz2 test data that triggers antivirus warnings.
by Georg Brandl
· 12 years ago
ce654f4
Issue #15535: Fix pickling of named tuples.
by Georg Brandl
· 12 years ago
d160b12
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
by Serhiy Storchaka
· 12 years ago
e1a1674
Issue #17835: Fix test_io when the default OS pipe buffer size is larger than one million bytes.
by Antoine Pitrou
· 12 years ago
326edfd
Ensure that plistlib doesn't corrupt deeply nested datastructures
by Ronald Oussoren
· 12 years ago
81a5855
Issue #11714: Use 'with' statements to assure a Semaphore releases a
by Serhiy Storchaka
· 12 years ago
d4cb4b7
Issue #17736: fix misleading comment in _elementtree.c Patch by Jonas Wagner
by Eli Bendersky
· 12 years ago
e917052
Issue #17795: Reverted backwards-incompatible change in SysLogHandler with Unix domain sockets.
by Vinay Sajip
· 12 years ago
4140fb5
#17065: Use process-unique key for winreg test.
by R David Murray
· 12 years ago
1f7492c
Isuse #17720: Fix APPENDS handling in the Python implementation of Unpickler
by Alexandre Vassalotti
· 12 years ago
3583761
#17413: make sure settrace funcs get passed exception instances for 'value'.
by R David Murray
· 12 years ago
ab5ba79
#17790: test_set now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
3e4a98b
#17789: test_random now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
aaa5d1c
#17779: test_osx_env now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
0471ac3
Merge.
by Richard Oudkerk
· 12 years ago
cf8a1e5
- Issue #17782: Fix undefined behaviour on platforms where ``struct timespec``'s "tv_nsec" member is not a C long.
by Antoine Pitrou
· 12 years ago
409c313
Issue #17555: Fix ForkAwareThreadLock so that size of after fork
by Richard Oudkerk
· 12 years ago
b38897f
Fix issue #17707: multiprocessing.Queue's get() method does not block for short timeouts.
by Giampaolo Rodola'
· 12 years ago
643ea53
#14735: Update IDLE docs to omit "Control-z on Windows".
by Roger Serwy
· 12 years ago
d13c008
#17766: test_iterlen now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
618738b
- Issue #17012: shutil.which() no longer fallbacks to the PATH environment
by Barry Warsaw
· 12 years ago
3034efd
Issue #17710: Fix pickle raising a SystemError on bogus input.
by Antoine Pitrou
· 12 years ago
ed3cd7e
#13510: clarify that f.readlines() is note necessary to iterate over a file. Patch by Dan Riti.
by Ezio Melotti
· 12 years ago
26dfaac9
#17341: Include name in re error message about invalid group name.
by R David Murray
· 12 years ago
f2fa5fc
Issue #17221: Resort Misc/NEWS.
by Serhiy Storchaka
· 12 years ago
6d10139
Close #17702: os.environ now raises KeyError with the original environment
by Victor Stinner
· 12 years ago
c4e0d98
Close issue #16163: handle submodules in pkgutil.iter_importers
by Nick Coghlan
· 12 years ago
8db89ca
Issue #16550: Update the opcode descriptions of pickletools to use unsigned
by Alexandre Vassalotti
· 12 years ago
9a7a811
Issue #16804: Fix 'python -S -m site' failure.
by Meador Inge
· 12 years ago
4bb1734
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
by Serhiy Storchaka
· 12 years ago
c973448
Issue #17715: Add missing NULL Check to PyNumber_Long.
by Mark Dickinson
· 12 years ago
b4fd468
Revert changes for #13355 by request from Raymond Hettinger
by Andrew Svetlov
· 12 years ago
64aafeb
Issue #16447: Fix potential segfault when setting __name__ on a class.
by Mark Dickinson
· 12 years ago
a2dfc35
Issue #13355: Raise ValueError on random.triangular call with invalid params.
by Andrew Svetlov
· 12 years ago
7b2c8bb
Issue #16658: add missing return to HTTPConnection.send().
by Andrew Svetlov
· 12 years ago
075d87c
#6696: add documentation for the Profile objects, and improve profile/cProfile docs. Patch by Tom Pinckney.
by Ezio Melotti
· 12 years ago
c2ecac4
#17692: test_sqlite now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
1eafd10
#17585: Fixed IDLE regression. Now closes when using exit() or quit().
by Roger Serwy
· 12 years ago
3836d70
#17690: test_time now works with unittest test discovery. Patch by Zachary Ware.
by Ezio Melotti
· 12 years ago
5e2f593
#14971: Use class method name, not function.__name__, during unittest discovery.
by R David Murray
· 12 years ago
c9314d9
don't run frame if it has no stack (closes #17669)
by Benjamin Peterson
· 12 years ago
cd514cf
#12820: add tests for the xml.dom.minicompat module. Patch by John Chandler and Phil Connell.
by Ezio Melotti
· 12 years ago
d9fbf36
#17678: Fix DeprecationWarning in the http/cookiejar.py by changing the usage
by Senthil Kumaran
· 12 years ago
0803a39
#17657: Show full Tk version in IDLE's about dialog. Patch by Todd Rovito.
by Roger Serwy
· 12 years ago
a6df938
Close #17666: Fix reading gzip files with an extra field.
by Serhiy Storchaka
· 12 years ago
7e69f00
Close #17666: Fix reading gzip files with an extra field.
by Serhiy Storchaka
· 12 years ago
b0f9fa7
Add NEWS entry for #17502: Process DEFAULT values in mock side_effect that returns iterator.
by Andrew Svetlov
· 12 years ago
7733be8
#17613: Prevent traceback when removing syntax colorizer in IDLE.
by Roger Serwy
· 12 years ago
6b2918a
#1207589: Backwards-compatibility patch for right-click menu in IDLE.
by Roger Serwy
· 12 years ago
595365d
Merge heads
by Andrew Svetlov
· 12 years ago
5b6e1ca
Update argparse docs to follow order of ArgumentParser() arguments.
by Andrew Svetlov
· 12 years ago
0ef392c
#16887: IDLE now accepts Cancel in tabify/untabify dialog box.
by Roger Serwy
· 12 years ago
278d03b
Revert a premature patch for issue #14010 (changeset aaaf36026511).
by Serhiy Storchaka
· 12 years ago
c496eda
move IDLE news to its own section
by Benjamin Peterson
· 12 years ago
e8f706e
Issue #14010: Fix a crash when iterating or deleting deeply nested filters
by Serhiy Storchaka
· 12 years ago
cca5548
merge with 3.3.1 release clone
by Georg Brandl
· 12 years ago
9aa23c5
Bump to 3.3.1.
by Georg Brandl
· 12 years ago
v3.3.1
8bc7e31
Bump to 3.2.4.
by Georg Brandl
· 12 years ago
v3.2.4
09f0dde
#8913: add examples and docs for date/time/datetime.__format__. Patch by Heikki Partanen.
by Ezio Melotti
· 12 years ago
38546ee
close search and replace dialog after it is used (closes #17625)
by Benjamin Peterson
· 12 years ago
7684fa8
close search and replace dialog after it is used (closes #17625)
by Benjamin Peterson
· 12 years ago
Next »