[issue23357] pyvenv help shows incorrect usage

2015-02-01 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +vinay.sajip stage: -> patch review versions: -Python 3.6 ___ Python tracker ___ ___ Python-bugs

[issue23099] BytesIO and StringIO values unavailable when closed

2015-02-01 Thread Martin Panter
Martin Panter added the comment: Here is an option that moves the documentation for discarding the buffer into the class description for both BytesIO and StringIO; what do you think? I would be happy enough with any of the last three patches, so I don’t want to hold this up forever :) ---

[issue23365] integer overflow in itertools.combinations_with_replacement

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The test needs 4GiB. May be use 2**29? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Pytho

[issue7434] general pprint rewrite

2015-02-01 Thread Zeke
Changes by Zeke : -- nosy: +Ezekiel.Fairfax ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue12916] Add inspect.splitdoc

2015-02-01 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: On 1 Feb 2015, at 22:03, Martin Panter wrote: > Martin Panter added the comment: > > Yes, this is based on your patch, Stéphane. On top of it I added > support for splitdoc(None), and made the other changes in the bullet > points. Great good news. Hope thes

[issue23363] integer overflow in itertools.permutations

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: An overflow in n * sizeof(Py_ssize_t) is not possible because n is the length of already allocated array of pointers. +with self.assertRaises(OverflowError): +permutations("A", 2**30) The test needs 4GiB. May be use 2**29? +with

[issue23364] integer overflow in itertools.product

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: +with self.assertRaises(OverflowError): +product(["a"]*(2**16), repeat=2**16) The test needs 16GiB. May be use repeat=2**13? -- nosy: +serhiy.storchaka status: closed -> open ___ Python tracker

[issue23366] integer overflow in itertools.combinations

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This commit (and three other) causes compiler warnings: ./Modules/itertoolsmodule.c: In function ‘product_new’: ./Modules/itertoolsmodule.c:2025:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if (repeat > PY_

[issue23365] integer overflow in itertools.combinations_with_replacement

2015-02-01 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue23375] test_py3kwarn fails on Windows

2015-02-01 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: http://buildbot.python.org/all/builders/x86%20XP-4%202.7/builds/3092/steps/test/logs/stdio == FAIL: test_optional_module_removals (test.test_py3kwarn.TestStdlibRemovals)

[issue23099] BytesIO and StringIO values unavailable when closed

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue23364] integer overflow in itertools.product

2015-02-01 Thread paul
paul added the comment: Why do you think this test needs 16GiB? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue23364] integer overflow in itertools.product

2015-02-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 2**16 * 2**16 * sizeof(Py_ssize_t) = 16GiB -- ___ Python tracker ___ ___ Python-bugs-list mailing

<    1   2