Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.4.5rc1
/
Misc
463c3f3
Release bump for 3.4.5rc1.
by Larry Hastings
· 9 years ago
v3.4.5rc1
196d7db
upgrade expt to 2.1.1 (closes #26556)
by Benjamin Peterson
· 9 years ago
46b32f3
raise an error when STARTTLS fails
by Benjamin Peterson
· 9 years ago
3d4d01f
Back out 7e9605697dfc, 2e3c31ab586a, 759b2cecc289.
by Guido van Rossum
· 9 years ago
b9869df
remove useless $ keyword (closes #17167)
by Benjamin Peterson
· 9 years ago
f11b25b
properly use the ObjArgs variant of CallMethod in dictview binary operations (closes #26478)
by Benjamin Peterson
· 9 years ago
90ba2ca
#26246: update copybutton.js after JQuery update. Patch by Liang-Bo Wang.
by Ezio Melotti
· 9 years ago
9491272
open the cert store readonly
by Benjamin Peterson
· 10 years ago
c4032da
prevent buffer overflow in get_data (closes #26171)
by Benjamin Peterson
· 10 years ago
514bb07
Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4
by Martin Panter
· 10 years ago
73f5507
Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3
by Martin Panter
· 10 years ago
3d81d93
Issue #25940: Use self-signed.pythontest.net in SSL tests
by Martin Panter
· 10 years ago
d9d0e86
Issue #26050: Add asyncio.StreamReader.readuntil() method.
by Yury Selivanov
· 10 years ago
c07b16b
Sync with asyncio repo
by Andrew Svetlov
· 10 years ago
e428231
Issue #22570: Add 'path' attribute to pathlib.Path objects.
by Guido van Rossum
· 10 years ago
69bfb15
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().
by Guido van Rossum
· 10 years ago
6c2d33a
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri.
by Guido van Rossum
· 10 years ago
c4e70ff
Post-release touchups for Python 3.4.4 final.
by Larry Hastings
· 10 years ago
fa71932
Release bump for Python 3.4.4 final.
by Larry Hastings
· 10 years ago
v3.4.4
13cf490
Post-release fixups for Python 3.4.4rc1.
by Larry Hastings
· 10 years ago
e739601
Version bump for 3.4.4rc1.
by Larry Hastings
· 10 years ago
v3.4.4rc1
6364094
Issue #25798: Update OS X 10.5+ 32-bit-only installer to build
by Ned Deily
· 10 years ago
14b2c82
fix reordering
by Benjamin Peterson
· 10 years ago
68524e1
merge 3.3
by Benjamin Peterson
· 10 years ago
2deaea3
merge 3.2
by Benjamin Peterson
· 10 years ago
5e62117
add CVE and issue number
by Benjamin Peterson
· 10 years ago
ced699b
#24903: Remove misleading error message to fix regression.
by R David Murray
· 10 years ago
afdd513
Issue #25764: Preserve subprocess fork exception when preexec_fn used
by Martin Panter
· 10 years ago
c7217d7
Issue #6478: _strptime's regexp cache now is reset after changing timezone
by Serhiy Storchaka
· 10 years ago
7aa6908
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 10 years ago
c0c00c3
Fix for issue #25177 with the mean of very small and very large numbers.
by Steven D'Aprano
· 10 years ago
cbbec1c
Issue #25718: Fixed copying object with state with boolean value is false.
by Serhiy Storchaka
· 10 years ago
c472246
Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Serhiy Storchaka
· 10 years ago
747d48c
Issues #22989, #21228: Document HTTP response object for urlopen()
by Martin Panter
· 10 years ago
d28bb62
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 10 years ago
33e7ea5
Issue #25616: Tests for OrderedDict are extracted from test_collections
by Serhiy Storchaka
· 10 years ago
1c855f4
Issue #25697: Fixed rough alphabetical order in Misc/ACKS.
by Serhiy Storchaka
· 10 years ago
1509580
Issue #24731: Fixed crash on converting objects with special methods
by Serhiy Storchaka
· 10 years ago
a49de6b
Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
by Serhiy Storchaka
· 10 years ago
ed92910
Issue #25663: Make rlcompleter avoid duplicate global names
by Martin Panter
· 10 years ago
e3d4ec4
Issue #25688: Fixed file leak in ElementTree.iterparse() raising an error.
by Serhiy Storchaka
· 10 years ago
e9b3074
Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.
by Serhiy Storchaka
· 10 years ago
b6aa537
Issue #25691: Fixed crash on deleting ElementTree.Element attributes.
by Serhiy Storchaka
· 10 years ago
8bc792a
Issue #25624: ZipFile now always writes a ZIP_STORED header for directory
by Serhiy Storchaka
· 10 years ago
c75d37f
Misc/NEWS entries for IDLE.
by Terry Jan Reedy
· 10 years ago
a82642f
Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)
by Martin Panter
· 10 years ago
41f69f4
Issue #25593: Change semantics of EventLoop.stop().
by Guido van Rossum
· 10 years ago
da32d26
Issue #25498: Fixed contributors name.
by Serhiy Storchaka
· 10 years ago
a0c9caa
Fix issue #6973: When we know a subprocess.Popen process has died, do
by Gregory P. Smith
· 10 years ago
f0c9038
fix possible memory lea k in _get_aia_uri (closes #25578)
by Benjamin Peterson
· 10 years ago
0d44111
Issue #25388: Fixed tokenizer crash when processing undecodable source code
by Serhiy Storchaka
· 10 years ago
06622ea
Issue #25590: Make rlcompleter only call getattr() once per attribute
by Martin Panter
· 10 years ago
1bb6515
Issue #25498: Fix GC crash due to ctypes objects wrapping a memoryview
by Martin Panter
· 10 years ago
d7a4415
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
by Serhiy Storchaka
· 10 years ago
a9dcdab
always set OP_NO_SSLv3 by default (closes #25530)
by Benjamin Peterson
· 10 years ago
eda06c8
fix memory leak in _get_crl_dp (closes #25569)
by Benjamin Peterson
· 10 years ago
fed16ec7c2
Added missed periods at the ends of sentences in Misc/NEWS.
by Serhiy Storchaka
· 10 years ago
faf7060
Fixed markup in Misc/NEWS.
by Serhiy Storchaka
· 10 years ago
ba27014
Issue #24306: Sets component ID for launcher to match 3.5 and later to avoid downgrading.
by Steve Dower
· 10 years ago
eeb896c
Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary
by Martin Panter
· 10 years ago
9ad0aae
Issue #18010: Fix pydoc web server search to handle package exceptions
by Martin Panter
· 10 years ago
d65c949
Issue #25523: Further a-to-an corrections.
by Serhiy Storchaka
· 10 years ago
7462b649
Issue #25523: Correct "a" article to "an" article
by Martin Panter
· 10 years ago
314464d
Issue #25510: fileinput.FileInput.readline() now returns b'' instead of ''
by Serhiy Storchaka
· 10 years ago
1f1177d
Fix some spelling errors in documentation and code comments
by Martin Panter
· 10 years ago
ea4cb63
Issue #21827: Fixed textwrap.dedent() for the case when largest common
by Serhiy Storchaka
· 10 years ago
d9dbf49
accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471)
by Benjamin Peterson
· 10 years ago
0e316f6
Issue #25461: Rephrase os.walk() doc
by Victor Stinner
· 10 years ago
c44ecdf
Issue #25441: asyncio: Raise error from drain() when socket is closed.
by Guido van Rossum
· 10 years ago
2bf91bf
- Issue #25440: Fix output of python-config --extension-suffix.
by doko@ubuntu.com
· 10 years ago
277640a
Closes #25411: Improved Unicode support in SMTPHandler.
by Vinay Sajip
· 10 years ago
5805dde
Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes.
by Serhiy Storchaka
· 10 years ago
0289155
Correct Misc/NEWS.
by Serhiy Storchaka
· 10 years ago
89065d9
Issue #25099: Skip relevant tests in test_compileall when an entry on
by Brett Cannon
· 10 years ago
d21e0b5
Issue #25161: Add full stops in documentation; patch by Takase Arihiro
by Martin Panter
· 10 years ago
c9a6ab5
Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by Eryksun
by Martin Panter
· 10 years ago
9955a37
Various minor typos in documentation and comments
by Martin Panter
· 10 years ago
bd6c41a
prevent unacceptable bases from becoming bases through multiple inheritance (#24806)
by Benjamin Peterson
· 10 years ago
15982aa
reinitialize an Event's Condition with a regular lock (closes #25319)
by Benjamin Peterson
· 10 years ago
b9bf913
Issue #23972: updates to asyncio datagram API. By Chris Laws.
by Guido van Rossum
· 10 years ago
d17e978
Issue #24820: Update IDLE NEWS items.
by Terry Jan Reedy
· 10 years ago
841d9ee
Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel.
by Guido van Rossum
· 10 years ago
cb29e8c
Issue #24657: Prevent CGIRequestHandler from collapsing the URL query
by Martin Panter
· 10 years ago
a02e18a
Issue #25232: Fix CGIRequestHandler's splitting of URL query
by Martin Panter
· 10 years ago
28b21e5
Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:
by Serhiy Storchaka
· 10 years ago
f731bc0
Issue #25280: Import trace messages emitted in verbose (-v) mode are no
by Serhiy Storchaka
· 10 years ago
78cc2e8
Issue #25003: os.urandom() doesn't use getentropy() on Solaris because
by Victor Stinner
· 10 years ago
a59018c
Issue #25182: The stdprinter (used as sys.stderr before the io module is
by Serhiy Storchaka
· 10 years ago
b5102e3
Issue #22958: Constructor and update method of weakref.WeakValueDictionary
by Serhiy Storchaka
· 10 years ago
68f5ef2
Issue #22609: Constructor of collections.UserDict now accepts the self keyword
by Serhiy Storchaka
· 10 years ago
e060619
Issue #25262. Added support for BINBYTES8 opcode in Python implementation of
by Serhiy Storchaka
· 10 years ago
d455a50
Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).
by Guido van Rossum
· 10 years ago
85976b1
Fixed issue #25034: Fix string.Formatter problem with auto-numbering
by Eric V. Smith
· 10 years ago
f38356a
Remove indent in news item. Error when building 3.x docs.
by Terry Jan Reedy
· 10 years ago
9af7fe7
Add recent IDLE NEWS items.
by Terry Jan Reedy
· 10 years ago
9af30ac
Correct Misc/NEWS about asyncio.Queue rewrite.
by Guido van Rossum
· 10 years ago
99f96c5
Issue #25233: Rewrite the guts of Queue to be more understandable and correct.
by Guido van Rossum
· 10 years ago
edc6885
Closes issue #23600: Wrong results from tzinfo.fromutc().
by Alexander Belopolsky
· 10 years ago
1138439
Issue #25203: Failed readline.set_completer_delims() no longer left the
by Serhiy Storchaka
· 10 years ago
e48cf7e
prevent overflow in _Unpickler_Read
by Benjamin Peterson
· 10 years ago
Next »