[issue22074] Lib/test/make_ssl_certs.py fails with NameError

2014-07-25 Thread Alex Gaynor
Changes by Alex Gaynor : -- nosy: +christian.heimes, dstufft, giampaolo.rodola, janssen, pitrou ___ Python tracker ___ ___ Python-bugs

[issue19884] Importing readline produces erroneous output

2014-07-25 Thread STINNER Victor
STINNER Victor added the comment: The test fails also on OpenBSD: http://buildbot.python.org/all/builders/x86%20OpenBSD%205.5%203.x/builds/671/steps/test/logs/stdio == FAIL: test_init (test.test_readline.TestReadline) -

[issue22063] asyncio: sock_xxx() methods of event loops should check ath sockets are non-blocking

2014-07-25 Thread STINNER Victor
Changes by STINNER Victor : -- title: asyncio: sock_xxx() methods of event loops should make the socket non-blocking -> asyncio: sock_xxx() methods of event loops should check ath sockets are non-blocking ___ Python tracker

[issue15858] tarfile missing entries due to omitted uid/gid fields

2014-07-25 Thread Adam Tauno Williams
Adam Tauno Williams added the comment: test fails for me with provided bad.tar [as described in comment] but test passed after applying patch to tarfile. -- nosy: +whitemice ___ Python tracker

[issue21987] TarFile.getmember on directory requires trailing slash iff over 100 chars

2014-07-25 Thread Matt Behrens
Matt Behrens added the comment: Here is a 3.5 fix based on Lars Gustäbel's, with test. -- nosy: +zigg versions: +Python 3.5 Added file: http://bugs.python.org/file36096/issue21987_py3.5_with_test.patch ___ Python tracker

[issue12319] [http.client] HTTPConnection.putrequest not support "chunked" Transfer-Encodings to send data

2014-07-25 Thread Adam Tauno Williams
Changes by Adam Tauno Williams : -- nosy: +whitemice ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue12319] [http.client] HTTPConnection.putrequest not support "chunked" Transfer-Encodings to send data

2014-07-25 Thread Demian Brecht
Changes by Demian Brecht : -- nosy: +demian.brecht ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22075] Lambda, enumerate and list comprehensins crash

2014-07-25 Thread wilson campusano
New submission from wilson campusano: SO: Ubuntu 14.04 When i run this code my pc crash -- components: Interpreter Core files: test_c.py messages: 224015 nosy: wilsoncampusano priority: normal severity: normal status: open title: Lambda, enumerate and list comprehensins crash type: cras

[issue1152248] Add support for reading records with arbitrary separators to the standard IO stack

2014-07-25 Thread Akira Li
Akira Li added the comment: To make the discussion more specific, here's a patch that adds support for alternative newlines in _pyio.TextIOWrapper. It aslo updates the documentation and adds more io tests. It does not provide C implementation or the extended newline support for binary files. As

[issue22075] Lambda, Enumerate and List comprehensions crash

2014-07-25 Thread wilson campusano
Changes by wilson campusano : -- title: Lambda, enumerate and list comprehensins crash -> Lambda, Enumerate and List comprehensions crash ___ Python tracker ___

[issue22075] Lambda, Enumerate and List comprehensions crash

2014-07-25 Thread wilson campusano
wilson campusano added the comment: SO: Ubuntu 14.04 When i run this code my pc crash -- Added file: http://bugs.python.org/file36099/test_c.py ___ Python tracker ___ __

[issue22075] Lambda, Enumerate and List comprehensions crash

2014-07-25 Thread Ned Deily
Ned Deily added the comment: It may be hard to see what's going on with the code written as a list comprehension. We could expand it out to something roughly equivalent and print the first n iterations: def main(): lista =[1, 4, 5 , 5, 6 , 3 ,1] def ins(x): return lista.insert

[issue1602] windows console doesn't print or input Unicode

2014-07-25 Thread Glenn Linderman
Glenn Linderman added the comment: This bug deserves to stay open with its high priority (for whatever good that does these last seven years, although I appreciate all the efforts put forth, and have been making heavy use of the workarounds in the patches), because when working with Unicode da

[issue1152248] Add support for reading records with arbitrary separators to the standard IO stack

2014-07-25 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue22047] argparse improperly prints mutually exclusive options when they are in a group

2014-07-25 Thread paul j3
paul j3 added the comment: This patch adds a class TestMutuallyExclusiveGroupErrors test_invalid_add_group() test, closely modeled on test_invalid_add_argument() I'm using ValueError in group add methods (maintaining the similarity with add_argument errors). I haven't c

[issue22068] test_gc fails after test_idle

2014-07-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: ConfigDialog is a good guess as I added a minimal test this month. I will try to revise to not create loops in the first place. -- ___ Python tracker __

[issue3982] support .format for bytes

2014-07-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: http://legacy.python.org/dev/peps/pep-0461/ adds % formatting for bytes and bytes array. Nick, I have the impression that there was a decision to not add bytes.format. Correct? If so, this issue should be closed. If not, what, if anything, has been decided? -

<    1   2