diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-08 04:27:28 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-08 04:27:28 (GMT) |
commit | 3f92bc6f4811241ac68ec2681895d22ba8c68bf0 (patch) | |
tree | 43a11c77f209ceda2bd30d6bec38c75e6766de4b /Misc | |
parent | 03446c43ca3a4be2097782f590b71a596a0158cc (diff) | |
download | cpython-3f92bc6f4811241ac68ec2681895d22ba8c68bf0.zip cpython-3f92bc6f4811241ac68ec2681895d22ba8c68bf0.tar.gz cpython-3f92bc6f4811241ac68ec2681895d22ba8c68bf0.tar.bz2 |
Remove buffer() usage in the socket module by just slicing directly on the
object. This removes all warnings for the module caused by running under -3.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ Library while running under the ``-3`` flag: aifc, asyncore, bdb, bsddb, ConfigParser, cookielib, DocXMLRPCServer, email, filecmp, fileinput, inspect, logging, modulefinder, pdb, pickle, profile, pstats, pydoc, re, rlcompleter, - SimpleXMLRPCServer, shelve, subprocess, sqlite3, tarfile, Tkinter, + SimpleXMLRPCServer, shelve, socket, subprocess, sqlite3, tarfile, Tkinter, test.test_support, textwrap, threading, tokenize, traceback, urlparse, wsgiref, xml, xmlrpclib. |