COMMITS
/ Lib/asynchat.py April 6, 2022
B
bpo-47061: use `warnings._deprecated()` with asynchat, asyncore, and smtpd (GH-32350)
Brett Cannon committed
March 18, 2022
H
bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)
Hugo van Kemenade committed
December 7, 2021
V
Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-29951)
Victor Stinner committed
November 15, 2021
V
bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)
Victor Stinner committed
June 24, 2021
B
bpo-44498: Issue a deprecation warning on asynchat, asyncore and smtpd import (#26882)
Barry Warsaw committed
November 19, 2019
October 26, 2016
G
Issue #25002: Back out asyncore/asynchat deprecation.
Guido van Rossum committed
October 25, 2016
G
Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.
Guido van Rossum committed
May 16, 2016
S
Issue #27034: Removed deprecated class asynchat.fifo.
Serhiy Storchaka committed
July 24, 2014
V
(Merge 3.4) Issue #16133: The asynchat.async_chat.handle_read() method now
Victor Stinner committed
V
Issue #16133: The asynchat.async_chat.handle_read() method now ignores
Victor Stinner committed
July 7, 2014
V
(Merge 3.4) Issue #11259: asynchat.async_chat().set_terminator() now raises a
Victor Stinner committed
V
Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError if
Victor Stinner committed
V
(Merge 3.4) asynchat: PEP8-ify the code
Victor Stinner committed
V
asynchat: PEP8-ify the code
Victor Stinner committed
V
(Merge 3.4) Issue #12523: asynchat.async_chat.push() now raises a TypeError if
Victor Stinner committed
V
Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't
Victor Stinner committed
June 21, 2014
G
#6916: raise a deprecation warning if using asynchat.fifo
Giampaolo Rodola' committed
March 20, 2014
V
Issue #20976: pyflakes: Remove unused imports
Victor Stinner committed
August 29, 2013
S
Issue #18743: Fix references to non-existant "StringIO" module
Serhiy Storchaka committed
S
Issue #18743: Fix references to non-existant "StringIO" module
Serhiy Storchaka committed
January 1, 2013
C
Issue #16787: Increase asyncore and asynchat default output buffers size, to
Charles-François Natali committed
December 18, 2012
A
Issue #16717: get rid of socket.error, replace with OSError
Andrew Svetlov committed
August 4, 2012
February 25, 2011
M
Normalize the encoding names for Latin-1 and UTF-8 to
Marc-André Lemburg committed
July 7, 2008
J
Fixed bugs 760475, 953599, and 1519. This is a translation of changelist 64768
Josiah Carlson committed
J
Committing Py3k version of changelist 64080 and 64257, along with updated tests
Josiah Carlson committed
August 31, 2007
T
Fix test_smtplib by munging asynchat some more.
Thomas Wouters committed
August 30, 2007
C
Raise statement normalization in Lib/.
Collin Winter committed
August 6, 2007
G
Merged revisions 56753-56781 via svnmerge from
Guido van Rossum committed
July 12, 2007
G
Fix asynchat to use bytes instead of strings.
Guido van Rossum committed
January 15, 2007
G
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum committed
January 10, 2007
G
SF patch 1631942 by Collin Winter:
Guido van Rossum committed
June 9, 2005
A
[Patch #1002763] Allow long ints as terminator values; also, treat a terminator of 0 like the empty string or None
Andrew M. Kuchling committed
September 27, 2004
A
Trivial bug fix: deque == [] is not a good way to check if a deque is empty.
Armin Rigo committed
March 1, 2004
R
Replace left(), right(), and __reversed__() with the more general purpose
Raymond Hettinger committed
February 29, 2004
R
Improvements to collections.deque():
Raymond Hettinger committed
February 7, 2004
R
Use collection.deque() instead of a list for a FIFO queue.
Raymond Hettinger committed
March 10, 2003
A
[Patch #649762] Fix for asynchat endless loop
Andrew M. Kuchling committed
A
Use isinstance() instead of type comparison
Andrew M. Kuchling committed
June 30, 2002
R
Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)
Raymond Hettinger committed
April 16, 2002
T
Whitespace normalization.
Tim Peters committed
March 20, 2002
A
A faster version of the find_prefix_at_end() function (that I found in the
Andrew M. Kuchling committed
March 8, 2002
A
[Bug #491820] Define two abstract methods to shut up Pychecker, and for
Andrew M. Kuchling committed
April 8, 2001
T
Fix from the Madusa mailing list:
Tim Peters committed
April 6, 2001
G
Make the docstring a raw string, for pydoc.
Guido van Rossum committed
April 5, 2001
T
Fix the fix (my error -- hasty pasty).
Tim Peters committed
T
One-liner critical fix from Jim Fulton: Eric's string-method crusade
Tim Peters committed
February 9, 2001
T
Whitespace normalization.
Tim Peters committed
E
String method conversion.
Eric S. Raymond committed