summaryrefslogtreecommitdiff
path: root/Lib/asynchat.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-271-1/+1
* Issue #16133: The asynchat.async_chat.handle_read() method now ignoresVictor Stinner2014-07-241-1/+8
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-1/+0
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-3/+5
* Suppress the warning in asynchat from using buffer() when running udner -3.Brett Cannon2008-08-091-1/+5
* Fixed bugs 760475, 953599, and 1519.Josiah Carlson2008-07-071-2/+2
* Applying updated patch from Issue 1736190, which addresses partialJosiah Carlson2008-06-101-57/+71
* [Patch #1002763] Allow long ints as terminator values; also, treat a terminat...Andrew M. Kuchling2005-06-091-2/+2
* Trivial bug fix: deque == [] is not a good way to check if a deque is empty.Armin Rigo2004-09-271-1/+1
* Replace left(), right(), and __reversed__() with the more general purposeRaymond Hettinger2004-03-011-1/+1
* Improvements to collections.deque():Raymond Hettinger2004-02-291-5/+1
* Use collection.deque() instead of a list for a FIFO queue.Raymond Hettinger2004-02-071-5/+10
* [Patch #649762] Fix for asynchat endless loopAndrew M. Kuchling2003-03-101-1/+1
* Use isinstance() instead of type comparisonAndrew M. Kuchling2003-03-101-3/+2
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-3/+1
* Whitespace normalization.Tim Peters2002-04-161-6/+6
* A faster version of the find_prefix_at_end() function (that I found in theAndrew M. Kuchling2002-03-201-9/+7
* [Bug #491820] Define two abstract methods to shut up Pychecker, and forAndrew M. Kuchling2002-03-081-0/+6
* Fix from the Madusa mailing list:Tim Peters2001-04-081-1/+1
* Make the docstring a raw string, for pydoc.Guido van Rossum2001-04-061-1/+1
* Fix the fix (my error -- hasty pasty).Tim Peters2001-04-051-1/+1
* One-liner critical fix from Jim Fulton: Eric's string-method crusadeTim Peters2001-04-051-1/+1
* Whitespace normalization.Tim Peters2001-02-091-1/+1
* String method conversion.Eric S. Raymond2001-02-091-2/+1
* New asynchat.py from Sam Rushing: this foregoes using the regex moduleAndrew M. Kuchling2001-01-241-36/+12
* Whitespace standardization.Tim Peters2001-01-141-239/+239
* Match Sam Rushing's current version of asyncore.py and asynchat.pyAndrew M. Kuchling2000-09-081-4/+7
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-18/+21
* Put Sam Rushing's original RCS ID string back, without dollars around it.Guido van Rossum1999-09-141-1/+1
* Sam's latest versionsGuido van Rossum1999-06-081-39/+61
* A gift from Sam Rushing - modules asyncore and asynchat for theGuido van Rossum1999-01-121-0/+290