Serhiy Storchaka
15095800a3
Issue #24731 : Fixed crash on converting objects with special methods
__bytes__, __trunc__, and __float__ returning instances of subclasses of
bytes, int, and float to subclasses of bytes, int, and float correspondingly.
10 years ago
Serhiy Storchaka
a49de6be36
Issue #25725 : Fixed a reference leak in pickle.loads() when unpickling
invalid data including tuple instructions.
10 years ago
Vinay Sajip
4f44d53770
Issue #25508 : Clarify documentation on LogRecord args attribute.
10 years ago
Martin Panter
cda85a0d1c
Issue #25576 : Remove application/x-www-form-urlencoded charset advice
No charset parameter is standardized for this Content-Type value. Also
clarify that urlencode() outputs ASCII.
10 years ago
Martin Panter
ed92910852
Issue #25663 : Make rlcompleter avoid duplicate global names
10 years ago
Serhiy Storchaka
bf7b9ede1a
Issue #25706 : Fixed markup in the documentation.
10 years ago
Serhiy Storchaka
e3d4ec4766
Issue #25688 : Fixed file leak in ElementTree.iterparse() raising an error.
10 years ago
Serhiy Storchaka
e9b3074cf9
Issue #23914 : Fixed SystemError raised by unpickler on broken pickle data.
10 years ago
Serhiy Storchaka
b6aa5375d5
Issue #25691 : Fixed crash on deleting ElementTree.Element attributes.
10 years ago
Serhiy Storchaka
8bc792a602
Issue #25624 : ZipFile now always writes a ZIP_STORED header for directory
entries. Patch by Dingyuan Wang.
10 years ago
Serhiy Storchaka
04d759b1e4
Issue #19687 : Fixed memory leak on failed Element slice assignment.
Added new tests for Element slice assignments.
10 years ago
Martin Panter
828123ce4e
Issue #25689 : Fix language in ftplib and nntplib docs
Original patch by Silent Ghost.
10 years ago
Terry Jan Reedy
6e92c1137b
Update idlelib/NEWS.txt.
10 years ago
Terry Jan Reedy
c75d37fcba
Misc/NEWS entries for IDLE.
10 years ago
Serhiy Storchaka
b42de2f309
Issue #25686 : test_shutil no longer uses the distutils package for searching
and running external archivers.
10 years ago
Terry Jan Reedy
e1b02e0459
Issue 15348: Stop debugger engine (normally in user process)
before closing debugger window in IDLE process.
10 years ago
Terry Jan Reedy
6a904c16f7
Issue #24455 : Prevent IDLE from hanging when a) closing the shell while the
debugger is active (15347); b) closing the debugger with the [X] button
(15348); and c) activating the debugger when already active (24455).
The patch by Mark Roseman does this by making two changes.
1. To suspend and resume the gui.interaction method, use the tcl vwait
mechanism interded for this purpose instead of root.mainloop & .quit.
2. In gui.run, allow any existing interaction to terminate first.
10 years ago
Yury Selivanov
0f3c9765d4
asyncio: Fix with github
See https://github.com/python/asyncio/pull/295 for details
10 years ago
Yury Selivanov
a211a7a0e7
asyncio.tests: Fix whitespace
10 years ago
Yury Selivanov
d59bba88e3
asyncio: Drop "value" parameter from Task._step method.
10 years ago
Yury Selivanov
b485bb416c
asyncio: Sync with github
10 years ago
Terry Jan Reedy
4379d15d4c
Make it slightly clearer that IDLE close message is referring to user program,
not to IDLE itself.
10 years ago
R David Murray
51d3f8b0ba
#25679 : spelling fix
10 years ago
Martin Panter
a82642f9db
Issue #25583 : Avoid incorrect errors raised by os.makedirs(exist_ok=True)
10 years ago
Guido van Rossum
41f69f4cc7
Issue #25593 : Change semantics of EventLoop.stop().
10 years ago
Yury Selivanov
01a65af4a1
asyncio.docs: Fix versionadded
10 years ago
Yury Selivanov
b3dd6d70c7
asyncio: Error if awaiting in parallel on the same coroutine
This change won't do anything in CPython 3.4
See https://github.com/python/asyncio/pull/293 for details.
10 years ago
Martin Panter
38fe4dc400
Issue #23200 : Document that max_length=0 is not supported
10 years ago
Martin Panter
f8f66eb985
Issue #20468 : Remove incorrect information about maxrss and page size
Extract of patch by Ronald Oussoren.
10 years ago
Yury Selivanov
5d7e3b6cd2
asyncio: Cleanup Future API
See https://github.com/python/asyncio/pull/292 for details.
10 years ago
Yury Selivanov
0013ccedd1
asyncio: Sync with github
10 years ago
Martin Panter
9f3c094e68
Issue #25615 : Document unsorted behaviour of glob; patch by Dave Jones
10 years ago
Yury Selivanov
a4afc4876b
asyncio: Optimize Task._wakeup
See https://github.com/python/asyncio/pull/289 for details.
10 years ago
Yury Selivanov
1744d53930
asyncio.docs: Document Transport.is_closing
10 years ago
Yury Selivanov
5bb1afb332
asyncio: Add Transport.is_closing()
See https://github.com/python/asyncio/pull/291 for details.
10 years ago
Serhiy Storchaka
da32d26ab9
Issue #25498 : Fixed contributors name.
10 years ago
Terry Jan Reedy
4932ac244f
Issue #24750 : whitespace
10 years ago
Terry Jan Reedy
d36d817a84
Issue #24750 : Improve appearance of IDLE editor window status bar.
Patch by Mark Roseman.
10 years ago
Martin Panter
6e0889f0c7
Issue #20220 : Add DST rules to work around glibc quirk
This was triggering intermittent failures in unrelated tests.
10 years ago
Serhiy Storchaka
e28209f251
Issue #9051 : Added tests for pickling and copying the timezone objects.
10 years ago
Gregory P. Smith
a0c9caad66
Fix issue #6973 : When we know a subprocess.Popen process has died, do
not allow the send_signal(), terminate(), or kill() methods to do
anything as they could potentially signal a different process.
10 years ago
Benjamin Peterson
025a1fd990
rm trailing ws
10 years ago
Benjamin Peterson
f0c9038a36
fix possible memory lea k in _get_aia_uri ( closes #25578 )
10 years ago
Serhiy Storchaka
0d441119f5
Issue #25388 : Fixed tokenizer crash when processing undecodable source code
with a null byte.
10 years ago
Benjamin Peterson
806fb25405
fix build with older openssl ( #25569 )
10 years ago
Martin Panter
2e4571a456
Fix a few grammar problems in the documentation and comments
10 years ago
Martin Panter
ac34e09bbf
Correct Content-Type syntax in documentation
10 years ago
Martin Panter
06622ead80
Issue #25590 : Make rlcompleter only call getattr() once per attribute
Previously it was called another time via hasattr(), and both calls were
made once for dir(f) and again for dir(f.__class__). This includes a
backport of changing from a list to a set from revision 4dbb315fe667.
10 years ago
Martin Panter
1bb651540e
Issue #25498 : Fix GC crash due to ctypes objects wrapping a memoryview
This was a regression caused by revision 1da9630e9b7f. Based on patch by
Eryksun.
10 years ago
Yury Selivanov
abe9625eeb
asyncio: Fix sporadic failing unittests in debug mode
10 years ago