Larry Hastings
aaa377f01d
Documentation fixes for 3.5.0b3.
11 years ago
Ned Deily
2e770ce9a0
Issue #24330 : merge from 3.4
11 years ago
Ned Deily
f1ce6deb41
Issue #24330 : Update IDLE doc and help to note "Configure IDLE" difference
on OS X. Original patch by André Freitas.
11 years ago
R David Murray
ac4f550bfc
Merge: #24584 : replace dead link with pointer to archive.org.
11 years ago
R David Murray
a1005ed1aa
#24584 : replace dead link with pointer to archive.org.
11 years ago
Steve Dower
06606e7165
Ignore user environment/site-packages for ensurepip and compile_all
Remove build condition to prevent old strings hanging around
Add -h option to build.bat
11 years ago
Ned Deily
1b7f6fedb3
Updates to the OS X installer for 3.5.0b3:
- update installer ReadMe file
- suppress installer per-file byte-compilation messages to system log
- speed up installer byte-compilation
- isolate ensurepip install from user site-packages
11 years ago
Ned Deily
704dde196c
Issue #24432 : Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c.
11 years ago
Ned Deily
0454d48e02
Issue #24432 : Update OS X 10.5+ installer builds to use OpenSSL 1.0.2c.
11 years ago
Steve Dower
f92673c254
Issue #24432 : Update Windows builds to use OpenSSL 1.0.2c.
11 years ago
Steve Dower
a09ef0389b
Issue #24432 : Update Windows builds to use OpenSSL 1.0.2c.
11 years ago
Steve Dower
ac2bd5b1e8
Fixes warnings when building python3.dll due to the .def file accumulating multiple copies of each line.
Adds shebang line to prepare_ssl so it will run with py.exe.
11 years ago
Yury Selivanov
fdbeb2b4b6
Issue #24400 : Resurrect inspect.isawaitable()
collections.abc.Awaitable and collections.abc.Coroutine no longer
use __instancecheck__ hook to detect generator-based coroutines.
inspect.isawaitable() can be used to detect generator-based coroutines
and to distinguish them from regular generator objects.
11 years ago
Nick Coghlan
2ab5b092e5
Close #24458 : PEP 489 documentation
Patch by Petr Viktorin.
11 years ago
Yury Selivanov
ccc897f839
Add a rudimentary test for StopAsyncIteration in test_exceptions.
11 years ago
Yury Selivanov
f488fb422a
Issue #19235 : Add new RecursionError exception. Patch by Georg Brandl.
11 years ago
Yury Selivanov
27be130ec7
Merge 3.4 (Issue #24450 )
11 years ago
Yury Selivanov
09e6058838
Issue #24450 : Proxy gi_yieldfrom & cr_await in asyncio.CoroWrapper
11 years ago
Yury Selivanov
53e623075d
Issue #24450 : Proxy cr_await and gi_yieldfrom in @types.coroutine
11 years ago
Yury Selivanov
e13f8f3cab
Issue #24450 : Add gi_yieldfrom to generators; cr_await to coroutines.
Patch by Benno Leslie and Yury Selivanov.
11 years ago
Benjamin Peterson
b32b998bf7
merge 3.4
11 years ago
Benjamin Peterson
d3a2a95125
use correct __new__ method ( closes #24552 )
11 years ago
Benjamin Peterson
42e913aa3a
merge 3.4 ( #24552 )
11 years ago
Benjamin Peterson
80f78a3efc
fix use after free ( closes #24552 )
11 years ago
Stefan Krah
e31db2a821
Issue #24543 : Use AC_LINK instead of AC_COMPILE in order to prevent false
positives with the -flto option (gcc >= 4.9.0 and clang).
11 years ago
Lars Gustäbel
49c521fd5d
Merge with 3.4: Issue #24514 : tarfile now tolerates number fields consisting of only whitespace.
11 years ago
Lars Gustäbel
b7a688b3a4
Issue #24514 : tarfile now tolerates number fields consisting of only whitespace.
11 years ago
Benjamin Peterson
44f323cb42
Merge 3.4
11 years ago
Benjamin Peterson
3ef80587f0
remove stray '(' ( closes #24547 )
11 years ago
Yury Selivanov
6aeda91941
docs/conf: Undo changes in b2a3baa1c2b0; issue #24400
11 years ago
Yury Selivanov
cc1d0287b5
Issue #24400 : Mention that __instancecheck__ is used in abc.Awaitable and Coroutine
11 years ago
Yury Selivanov
f27015255f
Issue #24400 : Add one more unittest for CoroutineType.__await__
11 years ago
Donald Stufft
d6e51560b3
merge in setuptools/pip update
11 years ago
Donald Stufft
fe6399e894
Update setuptools to 18.0.1 and pip to 7.1.0
11 years ago
Yury Selivanov
04356e1f6f
Issue #24487 : Rename async() -> ensure_future() in asyncio docs.
Patch by Martin Panter.
11 years ago
Yury Selivanov
59a3b6764c
Issue #24541 : Drop test_inspect.test_eightteen unittest; update docs
Suggested by Martin Panter.
11 years ago
Yury Selivanov
22f68d5dd6
Issue #24541 : Update comment in test_inspect.test_eightteen
11 years ago
Yury Selivanov
8a8f453c5a
Issue #24400 : Fix failing unittest
11 years ago
Yury Selivanov
88632d72f2
Note removal of inspect.isawaitable() in the NEWS file
11 years ago
Yury Selivanov
a74b5e59af
Issue #24400 : Remove inspect.isawaitable().
isawaitable() was added before collections.abc.Awaitable; now,
with Awaitable, it is no longer needed (we don't have ishashable()
or isiterable() methods in the inspect module either).
11 years ago
Yury Selivanov
86cd7d6b75
test_coroutines: remove whitespace
11 years ago
Yury Selivanov
9dec03571f
Issue #24528 : Improve error message for awaits in comprehensions
11 years ago
Serhiy Storchaka
4a01cab898
Issue #19176 : Fixed doctype() related bugs in C implementation of ElementTree.
A deprecation warning no longer issued by XMLParser subclass with default
doctype() method. Direct call of doctype() now issues a warning. Parser's
doctype() now is not called if target's doctype() is called. Based on patch
by Martin Panter.
11 years ago
Serhiy Storchaka
05744ac6e0
Issue #19176 : Fixed doctype() related bugs in C implementation of ElementTree.
A deprecation warning no longer issued by XMLParser subclass with default
doctype() method. Direct call of doctype() now issues a warning. Parser's
doctype() now is not called if target's doctype() is called. Based on patch
by Martin Panter.
11 years ago
Serhiy Storchaka
bc9e75ed02
Issue #24467 : Fixed possible buffer over-read in bytearray. The bytearray
object now always allocates place for trailing null byte and it's buffer now
is always null-terminated.
11 years ago
Serhiy Storchaka
7b6e3b91f5
Issue #24467 : Fixed possible buffer over-read in bytearray. The bytearray
object now always allocates place for trailing null byte and it's buffer now
is always null-terminated.
11 years ago
Jason R. Coombs
a95a476b3a
Issue #20387 : Merge test and patch from 3.4.4
11 years ago
Jason R. Coombs
50373e6c21
Issue #20387 : Merge
11 years ago
Serhiy Storchaka
b9b9e7b46a
Issue #24456 : Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()
functions of the audioop module.
11 years ago
Serhiy Storchaka
449e2be12b
Issue #24456 : Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()
functions of the audioop module.
11 years ago