Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
44391481d7d302bbe1c9c9eb0518b6a45f21e0b9
/
Misc
/
NEWS
4439148
Issue #26045: Add UTF-8 suggestion to error in http.client
by Martin Panter
· 9 years ago
a037022
Issue #12923: Reset FancyURLopener's redirect counter even on exception
by Martin Panter
· 9 years ago
a7eae40
Issue #25660: Fix TAB key behaviour in REPL.
by Yury Selivanov
· 9 years ago
3874128
Issue #25945: Fixed bugs in functools.partial.
by Serhiy Storchaka
· 9 years ago
b00da57
Issue #26194: Inserting into a full deque to raise an IndexError
by Raymond Hettinger
· 9 years ago
4a208e4
Issue #23076: Path.glob() now raises a ValueError if it's called with an
by Berker Peksag
· 9 years ago
b594422
Issue #4806: Avoid masking original TypeError in call with * unpacking
by Martin Panter
· 9 years ago
0a20bbf
Issue #26202: copy.deepcopy() now correctly copies range() objects with
by Serhiy Storchaka
· 9 years ago
d5db573
Issue #19883: Fixed possible integer overflows in zipimport.
by Serhiy Storchaka
· 9 years ago
7240030
Windows: Decode hostname from ANSI code page
by Victor Stinner
· 9 years ago
3743432
Issue #26194: Fix undefined behavior for deque.insert() when len(d) == maxlen
by Raymond Hettinger
· 9 years ago
3cdd5fb
code_richcompare() now uses the constants types
by Victor Stinner
· 9 years ago
47b8ba2
merge 3.4 (#26171)
by Benjamin Peterson
· 9 years ago
c4032da
prevent buffer overflow in get_data (closes #26171)
by Benjamin Peterson
· 9 years ago
bfd316e
Add _PyThreadState_UncheckedGet()
by Victor Stinner
· 9 years ago
aebb6d3
Issue #26147: xmlrpc now works with strings not encodable with used
by Serhiy Storchaka
· 9 years ago
d205d01
Issue #25935: Garbage collector now breaks reference loops with OrderedDict.
by Serhiy Storchaka
· 9 years ago
e914cd1
Issue #16620: Fixed AttributeError in msilib.Directory.glob().
by Serhiy Storchaka
· 9 years ago
9ad1154
set tp_new from the class in the hierarchy that actually owns the descriptor (closes #25731)
by Benjamin Peterson
· 9 years ago
111c7b9
Issue #26013: Added compatibility with broken protocol 2 pickles created
by Serhiy Storchaka
· 9 years ago
332334f
Issue #26071: bdist_wininst created binaries fail to start and find 32bit Python
by Steve Dower
· 9 years ago
87fb7f6
Issue #26073: Update the list of magic numbers in launcher
by Steve Dower
· 9 years ago
10cabcb
Issue #26065: Excludes venv from library when generating embeddable distro.
by Steve Dower
· 9 years ago
1d32941
Issue #25850: Use cross-compilation by default for 64-bit Windows.
by Steve Dower
· 9 years ago
56aae8f
Issue #17633: Improve support for namespace packages with zipimport.
by Brett Cannon
· 9 years ago
17cbee4
Issue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5
by Martin Panter
· 9 years ago
514bb07
Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4
by Martin Panter
· 9 years ago
73f5507
Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3
by Martin Panter
· 9 years ago
3d81d93
Issue #25940: Use self-signed.pythontest.net in SSL tests
by Martin Panter
· 9 years ago
bed30c3
Issue #25348: Add --pgo and --pgo-job flags to PCbuild\build.bat
by Zachary Ware
· 9 years ago
b2b1217
- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
by doko@ubuntu.com
· 9 years ago
885e193
Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
by Barry Warsaw
· 9 years ago
b4b8a0e
Merge 3.4 (Issue #26050)
by Yury Selivanov
· 9 years ago
d9d0e86
Issue #26050: Add asyncio.StreamReader.readuntil() method.
by Yury Selivanov
· 9 years ago
3feb946
Add missing Misc/NEWS update
by Andrew Svetlov
· 9 years ago
c07b16b
Sync with asyncio repo
by Andrew Svetlov
· 9 years ago
81bc927
Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
by Senthil Kumaran
· 9 years ago
3b1a8b3
enable SSL_MODE_RELEASE_BUFFERS
by Benjamin Peterson
· 9 years ago
1a4afec
Issue #22570: Add 'path' attribute to pathlib.Path objects. (Merge 3.4->3.5)
by Guido van Rossum
· 9 years ago
e428231
Issue #22570: Add 'path' attribute to pathlib.Path objects.
by Guido van Rossum
· 9 years ago
520f297
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob(). (Merge 3.4->3.5)
by Guido van Rossum
· 9 years ago
69bfb15
Issue #26012: Don't traverse into symlinks for ** pattern in pathlib.Path.[r]glob().
by Guido van Rossum
· 9 years ago
d54377d
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri. (Merge 3.4->3.5)
by Guido van Rossum
· 9 years ago
6c2d33a
Issue #24120: Ignore PermissionError in pathlib.Path.[r]glob(). Ulrich Petri.
by Guido van Rossum
· 9 years ago
830207e
#22709: Use stdin as-is if it does not have a buffer attribute.
by R David Murray
· 9 years ago
42bf8fc
Issue #25961: Disallowed null characters in the type name.
by Serhiy Storchaka
· 9 years ago
3cc8f4b
make recording and reporting errors and nonlocal and global directives more robust (closes #25973)
by Benjamin Peterson
· 9 years ago
e4d65e3
Issue #25447: Copying the lru_cache() wrapper object now always works,
by Serhiy Storchaka
· 9 years ago
f81be8a
Issue #22995: Instances of extension types with a state that aren't
by Serhiy Storchaka
· 9 years ago
bc4ded95
Issue #24103: Fixed possible use after free in ElementTree.XMLPullParser.
by Serhiy Storchaka
· 9 years ago
5a57ade
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 9 years ago
0bddc9e
Issue #25860: os.fwalk() no longer skips remaining directories when error occurs.
by Serhiy Storchaka
· 9 years ago
0ce7a3a
Issue #25914: Fixed and simplified OrderedDict.__sizeof__.
by Serhiy Storchaka
· 9 years ago
5af8564
Issue #25827: Add support for ICC to configure
by Zachary Ware
· 9 years ago
66c08d9
Issue #25902: Fixed various refcount issues in ElementTree iteration.
by Serhiy Storchaka
· 9 years ago
c4e70ff
Post-release touchups for Python 3.4.4 final.
by Larry Hastings
· 9 years ago
5aac3ed
Issue #25766: Special method __bytes__() now works in str subclasses.
by Serhiy Storchaka
· 9 years ago
fa71932
Release bump for Python 3.4.4 final.
by Larry Hastings
· 9 years ago
5c4064e
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
by Serhiy Storchaka
· 9 years ago
d1f20d1
Fixed markup and spaces in Misc/NEWS.
by Serhiy Storchaka
· 9 years ago
c202155
Issue #25696: Fix installation of Python on UNIX with make -j9.
by Victor Stinner
· 9 years ago
dda5843
Issue #19771: Omit irrelevant message if package could not be initialized
by Martin Panter
· 9 years ago
d785da8
Merge.
by Larry Hastings
· 9 years ago
13cf490
Post-release fixups for Python 3.4.4rc1.
by Larry Hastings
· 9 years ago
0c6ffab
Post-release fixups for Python 3.5.1.
by Larry Hastings
· 9 years ago
e739601
Version bump for 3.4.4rc1.
by Larry Hastings
· 9 years ago
8d5d466
Issue #25798: merge from 3.4
by Ned Deily
· 9 years ago
6364094
Issue #25798: Update OS X 10.5+ 32-bit-only installer to build
by Ned Deily
· 9 years ago
0bb62b1
Issue #25717: Tolerate fstat() failures in the FileIO constructor
by Martin Panter
· 9 years ago
ffccaa4
Version bump for 3.5.1 final.
by Larry Hastings
· 9 years ago
14b2c82
fix reordering
by Benjamin Peterson
· 9 years ago
c98bbd5
merge 3.4
by Benjamin Peterson
· 9 years ago
68524e1
merge 3.3
by Benjamin Peterson
· 9 years ago
2deaea3
merge 3.2
by Benjamin Peterson
· 9 years ago
5e62117
add CVE and issue number
by Benjamin Peterson
· 9 years ago
939614c
Merge: #24903: Remove misleading error message to fix regression.
by R David Murray
· 9 years ago
ced699b
#24903: Remove misleading error message to fix regression.
by R David Murray
· 9 years ago
6a77c2d
Issue #25764: Merge subprocess fix from 3.4 into 3.5
by Martin Panter
· 9 years ago
f4f25fe
Issue #25500: Fix the language reference to not claim that import
by Brett Cannon
· 9 years ago
b1f64e7
Issue #6478: _strptime's regexp cache now is reset after changing timezone
by Serhiy Storchaka
· 9 years ago
c7217d7
Issue #6478: _strptime's regexp cache now is reset after changing timezone
by Serhiy Storchaka
· 9 years ago
657257e
Issue #14285: Do not catch __init__.py exceptions in runpy
by Martin Panter
· 9 years ago
6648bf5
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
e800941
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
7aa6908
Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.
by Serhiy Storchaka
· 9 years ago
10f997d
Issue #25715: Python 3.5.1 installer shows wrong upgrade path and incorrect logic for launcher detection.
by Steve Dower
· 9 years ago
40a841b
Fixed issue #25177, problems with the mean of very small and very large numbers.
by Steven D'Aprano
· 9 years ago
c0c00c3
Fix for issue #25177 with the mean of very small and very large numbers.
by Steven D'Aprano
· 9 years ago
b63015b
Issue #25718: Fixed copying object with state with boolean value is false.
by Serhiy Storchaka
· 9 years ago
cbbec1c
Issue #25718: Fixed copying object with state with boolean value is false.
by Serhiy Storchaka
· 9 years ago
afdd513
Issue #25764: Preserve subprocess fork exception when preexec_fn used
by Martin Panter
· 9 years ago
15f070f
Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Serhiy Storchaka
· 9 years ago
c472246
Issue #10131: Fixed deep copying of minidom documents. Based on patch
by Serhiy Storchaka
· 9 years ago
670d78a
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
d28bb62
Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside
by Serhiy Storchaka
· 9 years ago
2cefc1e
Issue #25616: Tests for OrderedDict are extracted from test_collections
by Serhiy Storchaka
· 9 years ago
33e7ea5
Issue #25616: Tests for OrderedDict are extracted from test_collections
by Serhiy Storchaka
· 9 years ago
f9afda5
Issue #24731: Fixed crash on converting objects with special methods
by Serhiy Storchaka
· 9 years ago
1509580
Issue #24731: Fixed crash on converting objects with special methods
by Serhiy Storchaka
· 9 years ago
c5f3b42
Issue #25725: Fixed a reference leak in pickle.loads() when unpickling
by Serhiy Storchaka
· 9 years ago
Next »