[issue6745] (curses) addstr() takes str in Python 3

2011-10-28 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue12567] curses implementation of Unicode is wrong in Python 3

2011-10-28 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue13218] test_ssl failures on Debian/Ubuntu

2011-10-28 Thread STINNER Victor
STINNER Victor added the comment: "./python -m test -v -u all test_ssl" pass with issue13218.diff or issue13218-true.diff on Ubuntu 10.10. -- ___ Python tracker ___ ___

[issue13059] Sporadic test_multiprocessing failure: IOError("bad message length") in recv_bytes()

2011-10-28 Thread STINNER Victor
STINNER Victor added the comment: @antoine: can you try to add more debug messages? -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue13279] Add memcmp into unicode_compare for optimizing comparisons

2011-10-28 Thread STINNER Victor
STINNER Victor added the comment: I would be nice to have a third path for inegality with kind1==kind2, something like: else if (kind1 == PyUnicode_2BYTE_KIND && kind2 == PyUnicode_2BYTE_KIND) { /* use Py_UCS2* pointers */ } else if (kind1 == PyUnicode_4BYTE_KIND && kind2 == PyUnicode_4BYTE_

[issue13279] Add memcmp into unicode_compare for optimizing comparisons

2011-10-28 Thread STINNER Victor
STINNER Victor added the comment: > These 3 minor optimizations can make unicode_compare faster. Can you please try to write a short benchmark script? (or just run a benchmark using ./python -m timeit) -- ___ Python tracker

[issue10570] curses.tigetstr() returns bytes, but curses.tparm() expects a string

2011-10-28 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen stage: -> test needed versions: +Python 3.2, Python 3.3 -Python 3.1 ___ Python tracker ___ _

[issue13270] all classes are new style

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: the type>class change reflects the current output on 3.x -- ___ Python tracker ___ ___ Python-bugs

[issue10363] Embedded python, handle (memory) leak

2011-10-28 Thread Martin Dunschen
Martin Dunschen added the comment: Hello Antoine Unloading would not be necessary if the DLL is just the python interpreter, but if you build a DLL with python embedded that does quite a bit more than some python interpreting (in my case complex C/C++ numerical calculations) unloading the DLL i

[issue13270] all classes are new style

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 54abca0ab03b by Florent Xicluna in branch '3.2': Fixes #13270: obsolete reference to old-style/new-style classes. http://hg.python.org/cpython/rev/54abca0ab03b -- nosy: +python-dev ___ Python tracker

[issue13270] all classes are new style

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- resolution: -> fixed stage: patch review -> committed/rejected ___ Python tracker ___ ___ Python-bugs

[issue13278] Typo in documentation for sched module

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3e72de3c8ad5 by Ezio Melotti in branch '2.7': #13278: fix typo. http://hg.python.org/cpython/rev/3e72de3c8ad5 New changeset 9c4b62f67a28 by Ezio Melotti in branch '3.2': #13278: fix typo. http://hg.python.org/cpython/rev/9c4b62f67a28 New changeset

[issue13278] Typo in documentation for sched module

2011-10-28 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- assignee: docs@python -> ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue1294232] Error in metaclass search order

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: After changeset c72063032a7a I get this complain: Python/bltinmodule.c: In function ‘builtin___build_class__’: Python/bltinmodule.c:43: warning: unused variable ‘nbases’ -- nosy: +flox ___ Python tracker

[issue13282] the table of contents in epub file is too long

2011-10-28 Thread wrobell
New submission from wrobell : the table of contents in python documentation epub file is very very long. it takes several long minutes to jump from first page to a part containing language reference toc. imho it would be great if first page of epub file contained pointers to tutorial, lang ref

[issue13283] removal of two unused variable in locale.py

2011-10-28 Thread Nicolas Évrard
New submission from Nicolas Évrard : While using pyflake on some of my file I noticed in a copied version of _group two unused variables. The attached patch fixed that very little annoyance. -- components: Library (Lib) files: locale.diff keywords: patch messages: 146549 nosy: nicoe pr

[issue13273] HTMLParser improperly handling open tags when strict is False

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 41d41776aa6d by Ezio Melotti in branch '3.2': #13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False. http://hg.python.org/cpython/rev/41d41776aa6d New changeset b194117f176c by Ezio Melotti in branch 'default':

[issue13284] email.utils.formatdate function does not handle timezones correctly.

2011-10-28 Thread Burak Arslan
New submission from Burak Arslan : There's an issue with email.utils.formatdate function, illustrated here: https://gist.github.com/1321994 for reference i'm on Europe/Istanbul timezone, which is +03:00 because of DST at the time of this writing. I'm on stable Python 2.7.2 on gentoo linux.

[issue13273] HTMLParser improperly handling open tags when strict is False

2011-10-28 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks a lot for the report! -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed versions: -Python 2.7 ___ Python tracker

[issue6877] enable compilation of readline module on Mac OS X 10.5 and 10.6

2011-10-28 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +benjamin.peterson, georg.brandl Removed file: http://bugs.python.org/file16209/unnamed ___ Python tracker ___ ___

[issue6877] enable compilation of readline module on Mac OS X 10.5 and 10.6

2011-10-28 Thread STINNER Victor
Changes by STINNER Victor : Removed file: http://bugs.python.org/file16169/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue13285] signal module in ignores external signal changes

2011-10-28 Thread Vilya Harvey
New submission from Vilya Harvey : The signal module is oblivious to any changes to the set of installed signal handlers which occur outside of the module. This can happen when a native module changes a signal handler, or when the python interpreter is embedded in another program which install

[issue13285] signal module ignores external signal changes

2011-10-28 Thread Vilya Harvey
Changes by Vilya Harvey : -- title: signal module in ignores external signal changes -> signal module ignores external signal changes ___ Python tracker ___

[issue13284] email.utils.formatdate function does not handle timezones correctly.

2011-10-28 Thread Burak Arslan
Burak Arslan added the comment: turns out timetuple was not passing timezone information. the correct way of converting a datetime.datetime object to a correct rfc-2822 compliant date string seems to be: email.utils.formatdate(time.mktime(a.utctimetuple()) + 1e-6 * a.microsecond - time.timez

[issue13270] all classes are new style

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue13238] Add shell command helpers to shutil module

2011-10-28 Thread Nick Coghlan
Nick Coghlan added the comment: I realised I could use the convert_field() option in the custom formatter to choose between several interpolation quoting options: default - str + shutil.quote_ascii_whitespace !q - str + shlex.quote !u - unquoted (i.e. no conversion, str.format default be

[issue13238] Add shell command helpers to shutil module

2011-10-28 Thread Nick Coghlan
Nick Coghlan added the comment: Some examples: >>> import shutil >>> shutil.shell_call("du -hs {}", "../py*") 594M../py3k 579M../py3k_pristine 480M../python27 301M../python31 382M../python32 288K../python_swallowed_whole 0 >>> shutil.shell_call("du -hs {!q}", "../py*") d

[issue13258] replace hasattr(obj, '__call__') with callable(obj)

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8e57b5d8f58f by Florent Xicluna in branch '3.2': Closes #13258: Use callable() built-in in the standard library. http://hg.python.org/cpython/rev/8e57b5d8f58f -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejec

[issue1294232] Error in metaclass search order

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset b9bb9340eb0c by Florent Xicluna in branch 'default': Merge 3.2 (linked to issue #1294232) http://hg.python.org/cpython/rev/b9bb9340eb0c -- ___ Python tracker __

[issue13244] WebSocket schemes in urllib.parse

2011-10-28 Thread Tobias Oberstein
Tobias Oberstein added the comment: Is that patch supposed to be in Python 2.7.2? If so, it doesn't work for "ws": "ws://example.com/somewhere?foo=bar#dgdg" F:\scm\Autobahn\testsuite\websockets\servers>python Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32

[issue13285] signal module ignores external signal changes

2011-10-28 Thread Charles-François Natali
Charles-François Natali added the comment: > So it's impossible to reliably save and restore signal handlers through > python when they can also be changed outside the python interpreter. signal.getsignal() or signal.signal() return the current/previous handler as a Python function. How could

[issue13285] signal module ignores external signal changes

2011-10-28 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13278] Typo in documentation for sched module

2011-10-28 Thread Jeffrey Finkelstein
Jeffrey Finkelstein added the comment: Thank you for the great work, Python project! On Fri, Oct 28, 2011 at 5:36 AM, Ezio Melotti wrote: > > Ezio Melotti added the comment: > > Fixed, thanks for the report! > > -- > assignee: docs@python -> ezio.melotti > resolution:  -> fixed > stag

[issue13286] PEP 3151 breaks backward compatibility: it should be documented

2011-10-28 Thread STINNER Victor
New submission from STINNER Victor : The following example works on Python 2.7 and 3.2, but fails on Python 3.3: --- import errno import os try: os.rmdir("testdir") except: pass os.mkdir("testdir") try: try: os.mkdir("testdir") except IOError as exc: # If

[issue13286] PEP 3151 breaks backward compatibility: it should be documented

2011-10-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: Why would you catch IOError after os.mkdir()? -- ___ Python tracker ___ ___ Python-bugs-list mailin

[issue13285] signal module ignores external signal changes

2011-10-28 Thread Vilya Harvey
Vilya Harvey added the comment: Could it return an opaque wrapper object, rather than just the raw address? Something like: typedef struct _PyNativeSignalHandler { PyObject_HEAD sighandler_t handler_func; } PyNativeSignalHandler; where the type object doesn't expose any way to read or man

[issue13286] PEP 3151 breaks backward compatibility: it should be documented

2011-10-28 Thread STINNER Victor
STINNER Victor added the comment: The first example was extracted from Lib/importlib/_bootstrap.py. The code was maybe wrong, I don't know. Another example: -- import errno import os try: os.rmdir("testdir") except: pass os.mkdir("testdir") try: try: #

[issue13224] Change str(class) to return only the class name

2011-10-28 Thread Éric Araujo
Éric Araujo added the comment: [Guido] > What's holding this up? - I haven’t updated the patch for function and module objects yet - I need to catch up with the python-ideas discussion - There is at least one strong argument against the idea (I’ll point it out on the ML) -- _

[issue13238] Add shell command helpers to shutil module

2011-10-28 Thread Éric Araujo
Éric Araujo added the comment: The custom formatter idea sounds brilliant. Can you test that auto-escaping of spaces works well with glob patterns? -- ___ Python tracker ___ _

[issue13287] urllib.request exposes too many names

2011-10-28 Thread Florent Xicluna
New submission from Florent Xicluna : >>> len(dir()) 4 >>> import urllib.request import * >>> len(dir()) 88 In this list we find 14 modules: ['base64', 'collections', 'ssl', 'bisect', 'http', 're', 'email', 'socket', 'os', 'posixpath', 'hashlib', 'io', 'time', 'sys'] And many non-documented f

[issue13287] urllib.request exposes too many names

2011-10-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue13170] distutils2 test failures

2011-10-28 Thread Éric Araujo
Éric Araujo added the comment: > The remaining test > (test_command_install_data.InstallDataTestCase.test_simple_run) was > broken in r1152. This looks like a local revision number, which has no meaning outside of one specific repository. What is the changeset identifier? (see http://hgbook

[issue13238] Add shell command helpers to shutil module

2011-10-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: > default - str + shutil.quote_ascii_whitespace > !q - str + shlex.quote > !u - unquoted (i.e. no conversion, str.format default behaviour) The default doesn't look very understandable to me. Why would you quote only some characters and not all of them? --

[issue13287] urllib.request exposes too many names

2011-10-28 Thread Ezio Melotti
Ezio Melotti added the comment: This is technically backward incompatible, so if we define an __all__ with most of these names, we are officially making them public, if we leave them out, from urllib.request import * will break for someone. You could argue that import * is discouraged though.

[issue13241] llvm-gcc-4.2 miscompiles Python (XCode 4.1 on Mac OS 10.7)

2011-10-28 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue13287] urllib.request exposes too many names

2011-10-28 Thread Senthil Kumaran
Senthil Kumaran added the comment: Let's deprecate some of these (or add deprecation warnings) for upcoming release. But, doing from xxx import * is not a recommended way for any module, as we know that it stands to pollute the namespace with unneccesary functions/methods. I would be careful in

[issue13257] Move importlib over to PEP 3151 exceptions

2011-10-28 Thread Brett Cannon
Brett Cannon added the comment: Florent inadvertently did this for me in rev 73169. -- resolution: -> fixed stage: needs patch -> status: open -> closed ___ Python tracker ___

[issue13170] distutils2 test failures

2011-10-28 Thread David Barnett
David Barnett added the comment: >> The remaining test >> (test_command_install_data.InstallDataTestCase.test_simple_run) was >> broken in r1152. >This looks like a local revision number, which has no meaning outside of one >specific repository. What is the changeset identifier? (see >http:

[issue13283] removal of two unused variable in locale.py

2011-10-28 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue13218] test_ssl failures on Debian/Ubuntu

2011-10-28 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I can't test this on OS X 10.7 because of issue 13241 but it works fine on OS X 10.6. I'm going to go with the first diff (i.e. the non-sense changing version). I can't say why I favor that version but since you've both verified it works on !Ubuntu, we'll

[issue13287] urllib.request exposes too many names

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: We should only expose the names which are documented. The modules and the objects from urllib.parse don't need to be exposed in urllib.request. I suggest to apply this patch on 3.3 only. -- keywords: +patch stage: needs patch -> patch review Added fi

[issue13283] removal of two unused variable in locale.py

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: This patch looks good. Is it relevant for minor releases 2.7.3 and 3.2.3? I cannot confirm. -- nosy: +flox priority: normal -> low versions: +Python 3.2, Python 3.3 ___ Python tracker

[issue13286] PEP 3151 breaks backward compatibility: it should be documented

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: -> needs patch type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue6877] enable compilation of readline module on Mac OS X 10.5 and 10.6

2011-10-28 Thread Ned Deily
Changes by Ned Deily : -- resolution: accepted -> fixed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue13218] test_ssl failures on Debian/Ubuntu

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3c225f938dae by Barry Warsaw in branch '2.7': - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. http://hg.python.org/cpython/rev/3c225f938dae New changeset 415e2c998e18 by Barry Warsaw in branch '3.2': - Issue #13218: Fix test_ssl failures on

[issue13288] SSL module doesn't allow access to cert issuer information

2011-10-28 Thread John Nagle
New submission from John Nagle : The SSL module still doesn't return much information from the certificate. SSLSocket.getpeercert only returns a few basic items about the certificate subject. You can't retrieve issuer information, and you can't get the extensions needed to check if a cert is an

[issue13285] signal module ignores external signal changes

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- components: +Library (Lib) nosy: +flox versions: +Python 3.3 -Python 2.6, Python 3.1 ___ Python tracker ___ __

[issue13218] test_ssl failures on Debian/Ubuntu

2011-10-28 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue2892] improve cElementTree iterparse error handling

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: unfortunately, I did not find the fix and the test in the upstream repository. AFAIK, upstream should be there: https://bitbucket.org/effbot/et-2009-provolone/src -- components: +XML -Extension Modules type: feature request -> behavior versions: +Pyth

[issue13248] deprecated in 3.2, should be removed in 3.3

2011-10-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: The difflib deprecations are mine and I think they should happen in 3.3. This will serve as a reminder. -- nosy: +terry.reedy ___ Python tracker __

[issue13262] IDLE opens partially hidden

2011-10-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: I agree and commented about this on some previous issue (which I cannot find now). I actually would like it to save the window position and size. -- nosy: +terry.reedy ___ Python tracker

[issue13275] Recommend xml.etree for XML processing

2011-10-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: In the tutorial, "The xml.dom and xml.sax packages" should be expanded to "The xml.dom, xml.sax, and xml.etree packages". I suspect that the current line predates the addition of .etree. We try to mostly not give opinion-based recommendations; the docs are fo

[issue2892] improve cElementTree iterparse error handling

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: Proposed patch for 3.3. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file23544/issue2892_etree_iterparse.diff ___ Python tracker _

[issue1681674] subprocess.Popen fails with socket._fileobject on Windows

2011-10-28 Thread James Burgess
James Burgess added the comment: "Can't Fix" that is not true. I've just fixed this in 2.7 with a trivial change to subprocesss.py, I think it'd work in over versions too. Note that type shenanigans are already in play in _get_handles, it's looking at the types of the parameters being passe

[issue13281] robotparser.RobotFileParser ignores rules preceeded by a blank line

2011-10-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: Because of the line break, clicking that link gives "Server error 404". http://www.robotstxt.org/norobots-rfc.txt works (so please pay attention to formatting). The main page is http://www.robotstxt.org/robotstxt.html The way I read the grammar, 'records' (whi

[issue7334] ElementTree: file locking in Jython 2.5 (OSError on Windows)

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: Changeset cff78ffb932a fixed the issue for 3.2. I will consider backporting. -- resolution: -> fixed stage: needs patch -> patch review versions: -Python 3.2 ___ Python tracker

[issue7334] ElementTree: file locking in Jython 2.5 (OSError on Windows)

2011-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset eceaa31252b3 by Florent Xicluna in branch '2.7': Closes #7334: close source files on ElementTree.parse and iterparse (partial backport of issue #10093 from 3.2). http://hg.python.org/cpython/rev/eceaa31252b3 -- nosy: +python-dev stage: pat

[issue13238] Add shell command helpers to shutil module

2011-10-28 Thread Nick Coghlan
Nick Coghlan added the comment: The first version I wrote *did* automatically invoke shlex.quote on all interpolated values, but that breaks wildcard handling. You can see that in the examples I posted above. With the default whitespace escaping (which allows spaces in filenames), wildcard ma

[issue8256] input() doesn't catch _PyUnicode_AsString() exception; io.StringIO().encoding is None

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: Confirmed in 3.3. The patch does not apply cleanly on trunk. -- stage: test needed -> needs patch versions: +Python 3.3 -Python 3.1 ___ Python tracker

[issue6057] sqlite3 error classes should be documented

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- stage: -> needs patch versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list ma

[issue6655] etree iterative find[text]

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: ElementTree 1.3 added the "iterfind" method to Python 2.7 and 3.2. http://docs.python.org/library/xml.etree.elementtree.html#xml.etree.ElementTree.Element.iterfind -- resolution: -> out of date stage: test needed -> committed/rejected status: open ->

[issue9375] ElementPath parser in ElementTree 1.3 does not reject "element//" as invalid

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: This behavior is verified with unit tests. I don't plan to change it. -- resolution: -> wont fix stage: -> committed/rejected status: open -> pending ___ Python tracker

[issue8277] ElementTree won't parse comments

2011-10-28 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue8047] Serialiser in ElementTree returns unicode strings in Py3k

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: 3.1 is no longer in scope for this issue. -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue7710] Inconsistent Exception for int() conversion

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: On 3.2 it is fixed (I didn't find the related changeset). Not backported to 2.7. -- versions: -Python 3.1, Python 3.2 ___ Python tracker ___

[issue4221] inconsistent exception from int is confusing

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: No more bug with Python 3.2. On 2.7, we still experience the behavior described in msg75290. -- versions: -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker

[issue9708] cElementTree iterparse does not support "parser" argument

2011-10-28 Thread Florent Xicluna
Florent Xicluna added the comment: Documentation should be fixed for 3.2 and 2.7. Patch welcomed. -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: test needed -> needs patch ___ Python tracker

[issue1681674] subprocess.Popen fails with socket._fileobject on Windows

2011-10-28 Thread Ned Deily
Changes by Ned Deily : -- nosy: +brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue13289] a spell error in standard lib SocketServer‘s comment

2011-10-28 Thread args wu
New submission from args wu : In line 85, the reqd should be read. I also checked in python3.2's lib, the error still be there。 -- components: Library (Lib) messages: 146597 nosy: args.wu priority: normal severity: normal status: open title: a spell error in standard lib SocketServer‘s c