[issue23382] Maybe can not shutdown ThreadPoolExecutor when call the method of shutdown

2015-02-03 Thread miles
New submission from miles: Maybe can not shutdown ThreadPoolExecutor when call the method shutdown. Though the variable of _shutdown is set to true in the method of shutdown, it may also reads the variable of _shutdown from cpu cache in the method of _worker, and the worst case is that it coul

[issue23383] Clean up bytes formatting

2015-02-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Proposed patch makes following changes to bytes formatting code: 1) Fixes a bug when PyUnicode_AsEncodedObject() returns non-bytes byte-like object. 2) Avoid few non-neccessary memory allocations and copyings (converting bytearray or ASCII string to bytes

[issue22818] Deprecate splitting on possible zero-width re patterns

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c667d8ae10d by Serhiy Storchaka in branch 'default': Issue #22818: Splitting on a pattern that could match an empty string now https://hg.python.org/cpython/rev/7c667d8ae10d -- nosy: +python-dev ___ Pyth

[issue23384] urllib.proxy_bypass_registry slow down under Windows if website has no reverse DNS and Fiddler is runing

2015-02-03 Thread Valeriy Osipov
New submission from Valeriy Osipov: Environment: OS Windows 8, Fiddler is running To reproduce the issue launch this code snippet: import requests import datetime import urllib print datetime.datetime.now() #print requests.get('http://torgi.gov.ru/lotSearchArchive.html?bidKindId=2') #print url

[issue22818] Deprecate splitting on possible zero-width re patterns

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Ezio and Berker for your reviews. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue6634] sys.exit() called from threads other than the main one: undocumented behaviour

2015-02-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: I'm not sure what the doc patch achieves. It only states more verbosely what is already said in the current version. Also, warnings are really for important issues (such as security issues); using them too liberally is a disservice to the reader. -- _

[issue15381] Optimize BytesIO to do less reallocations when written, similarly to StringIO

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2e29d54843a4 by Serhiy Storchaka in branch 'default': Issue #15381: Optimized io.BytesIO to make less allocations and copyings. https://hg.python.org/cpython/rev/2e29d54843a4 -- ___ Python tracker

[issue23382] Maybe can not shutdown ThreadPoolExecutor when call the method of shutdown

2015-02-03 Thread miles
miles added the comment: The attachment includes the new code -- Added file: http://bugs.python.org/file37997/thread.py ___ Python tracker ___ ___

[issue23385] snmp - mib error

2015-02-03 Thread nivin
New submission from nivin: Hi , I have created one snmp mib , and tried to send a sample trap using a script written in python using pysnmp. but i got error as follows ,'pysnmp.smi.error.SmiError: MIB file "mymib.py[co]" not found in search path'. Can any one help me please? I'm attaching the

[issue23386] snmp - mib error

2015-02-03 Thread nivin
New submission from nivin: Hi , I have created one snmp mib , and tried to send a sample trap using a script written in python using pysnmp. but i got error as follows ,'pysnmp.smi.error.SmiError: MIB file "mymib.py[co]" not found in search path'. Can any one help me please? I'm attaching the

[issue23358] BaseServer missing from socketserver.__all__

2015-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Martin. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue23358] BaseServer missing from socketserver.__all__

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset e614ff664877 by Berker Peksag in branch '3.4': Issue #23358: Add missing BaseServer entry to socketserver.__all__. https://hg.python.org/cpython/rev/e614ff664877 New changeset 80d282505d21 by Berker Peksag in branch 'default': Issue #23358: Add miss

[issue23386] snmp - mib error

2015-02-03 Thread Shinto Peter
Shinto Peter added the comment: please attach MIB file also -- nosy: +shinto ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23386] snmp - mib error

2015-02-03 Thread nivin
Changes by nivin : Added file: http://bugs.python.org/file38000/MY-MIB.txt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue23385] snmp - mib error

2015-02-03 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> snmp - mib error ___ Python tracker ___ ___

[issue23386] snmp - mib error

2015-02-03 Thread nivin
nivin added the comment: I have attached mib file also -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue23380] Python 2.7.9 test_gdb fails on Fedora 21

2015-02-03 Thread Vinson Lee
New submission from Vinson Lee: Python 2.7.9 test_gdb fails on Fedora 21. $ ./python Lib/test/regrtest.py -v test_gdb == CPython 2.7.9 (default, Feb 2 2015, 13:43:56) [GCC 4.9.2 20141101 (Red Hat 4.9.2-1)] == Linux-3.18.3-201.fc21.x86_64-x86_64-with-fedora-21-Twenty_One little-endian == Pyt

[issue13128] httplib debuglevel on CONNECT doesn't print response headers

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset dfbd07cdc031 by Berker Peksag in branch 'default': Issue #13128: Print response headers for CONNECT requests when debuglevel > 0. https://hg.python.org/cpython/rev/dfbd07cdc031 -- nosy: +python-dev ___ Py

[issue13128] httplib debuglevel on CONNECT doesn't print response headers

2015-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Demian. I've simplified the test code a bit and committed it. Also, thanks for the report and for the initial patch Matt. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed

[issue23379] Incorrect links within PEPs

2015-02-03 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the report, Jonathan. This is a website issue, so I've created a new issue on GitHub: https://github.com/python/pythondotorg/issues/561 -- nosy: +berker.peksag resolution: -> third party stage: -> resolved status: open -> closed ___

[issue23387] test_urllib2 fails with HTTP Error 502: Bad Gateway

2015-02-03 Thread Berker Peksag
New submission from Berker Peksag: == ERROR: test_issue16464 (test.test_urllib2.MiscTests) -- Traceback (most recent call last): File "/ssd/buildbot/buildarea

[issue23382] Maybe can not shutdown ThreadPoolExecutor when call the method of shutdown

2015-02-03 Thread miles
miles added the comment: the attachment includes the new code -- Added file: http://bugs.python.org/file38002/thread.py ___ Python tracker ___ ___

[issue23388] datetime.strftime('%s') does not take timezone into account

2015-02-03 Thread cameris
New submission from cameris: The following occured on linux with python 3.4.2, the machines local timezone is tz2: >>> import datetime >>> tz1 = datetime.timezone.utc; tz2 = >>> datetime.timezone(datetime.timedelta(seconds=3600)); tz3 = >>> datetime.timezone(datetime.timedelta(seconds=18000)

[issue15381] Optimize BytesIO to do less reallocations when written, similarly to StringIO

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Some buildbots crash: http://buildbot.python.org/all/builders/x86%20Ubuntu%20Shared%203.x/builds/11152/steps/test/logs/stdio http://buildbot.python.org/all/builders/AMD64%20Debian%20PGO%203.x/builds/4/steps/test/logs/stdio http://buildbot.python.org/all/builde

[issue15381] Optimize BytesIO to do less reallocations when written, similarly to StringIO

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3fdbdf4d2ac7 by Serhiy Storchaka in branch 'default': Issue #15381: Try to fix refcount bug. Empty and 1-byte buffers are always shared. https://hg.python.org/cpython/rev/3fdbdf4d2ac7 -- ___ Python track

[issue23386] snmp - mib error

2015-02-03 Thread Eric V. Smith
Eric V. Smith added the comment: pysnmp is not part of the Python standard library. It looks like you should report issues or search for help at at pysnmp.sourceforge.net. -- components: -Build nosy: +eric.smith resolution: -> third party stage: -> resolved status: open -> closed typ

[issue23386] snmp - mib error

2015-02-03 Thread nivin
nivin added the comment: I have fixed the issue that i reported by creating my mib file into py by the command 'build-pysnmp-mib -o MY-MIB.py MY-MIB' and copy it into the path '/usr/local/lib/python2.7/dist-packages/pysnmp/smi/mibs' But my doubts are : Is there any other option to send snmp tr

[issue23386] snmp - mib error

2015-02-03 Thread Eric V. Smith
Eric V. Smith added the comment: Your question is not appropriate here, and you're unlikely to get an answer. This tracker is for bugs in python and its standard library. It is not for asking for help with third party packages. See my other comment for a pointer to an appropriate venue for pys

[issue6634] sys.exit() called from threads other than the main one: undocumented behaviour

2015-02-03 Thread Jan-Philip Gehrcke
Jan-Philip Gehrcke added the comment: Thanks for your feedback Antoine. > I'm not sure what the doc patch achieves. Let me try to bring things in order. It should achieve two things: 1. Properly describe the stderr-writing behavior of sys.exit(). ==

[issue23388] datetime.strftime('%s') does not take timezone into account

2015-02-03 Thread Han Choongwoo
Changes by Han Choongwoo : -- nosy: +tunz ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue23388] datetime.strftime('%s') does not take timezone into account

2015-02-03 Thread R. David Murray
Changes by R. David Murray : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue18932] Optimize selectors.EpollSelector.modify()

2015-02-03 Thread STINNER Victor
STINNER Victor added the comment: selectors.EpollSelector.modify() should use epoll.modify() instead of unregister()+register(). -- title: selectors and modify() -> Optimize selectors.EpollSelector.modify() ___ Python tracker

[issue18932] Optimize selectors.EpollSelector.modify()

2015-02-03 Thread STINNER Victor
Changes by STINNER Victor : -- components: +asyncio nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue19017] selectors: towards uniform EBADF handling

2015-02-03 Thread STINNER Victor
Changes by STINNER Victor : -- components: +asyncio nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue14203] bytearray_getbuffer: unnecessary code

2015-02-03 Thread Stefan Krah
Stefan Krah added the comment: New patch with tests. -- Added file: http://bugs.python.org/file38003/issue14203-2.diff ___ Python tracker ___

[issue23344] Faster marshalling

2015-02-03 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: looks good to me, although it has been pointed out that marshal _write_ speed is less critical than read speed :) -- ___ Python tracker ___

[issue14203] bytearray_getbuffer: unnecessary code

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset e8fe32d43c96 by Stefan Krah in branch 'default': Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() https://hg.python.org/cpython/rev/e8fe32d43c96 -- nosy: +python-dev ___ Python

[issue23359] Speed-up set_lookkey()

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 17cda5a92b6a by Raymond Hettinger in branch 'default': Issue 23359: Reduce size of code in set_lookkey. Only do linear probes when there is no wrap-around. https://hg.python.org/cpython/rev/17cda5a92b6a --

[issue23359] Speed-up set_lookkey()

2015-02-03 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks Serhiy, that was brilliant. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue23388] datetime.strftime('%s') does not take timezone into account

2015-02-03 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: This looks like a duplicate of #12750. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Stefan Krah
Stefan Krah added the comment: bytesiobuf_getbuffer() also still has this obsolete feature, so BufferError should be raised if view==NULL. I'm unsure if this plays well with the new SHARED_BUF(b) thing. Should the exception be raised before or after? -- nosy: +serhiy.storchaka title: b

[issue15381] Optimize BytesIO to do less reallocations when written, similarly to StringIO

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset ea33b61cac74 by Serhiy Storchaka in branch 'default': Issue #15381: Fixed a bug in BytesIO.write(). https://hg.python.org/cpython/rev/ea33b61cac74 -- ___ Python tracker

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I think before. It doesn't harm, but it doesn't make much sense to unshare the buffer if its address is not used. -- ___ Python tracker ___ _

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: E.g. the buffer should be unshared before incrementing b->exports, but if an exception is raised instead, there is no need to unshare the buffer before raising. -- ___ Python tracker

[issue23388] datetime.strftime('%s') does not take timezone into account

2015-02-03 Thread cameris
cameris added the comment: Yes, this seems to be exactly the same. Searching with "All text*: '%s'" didn't return anything, therefore I thought it is an unknown bug/behaviour. Well, sorry for the duplicate. -- ___ Python tracker

[issue23389] pkgutil.find_loader raises an ImportError on PEP 420 implicit namespace packages

2015-02-03 Thread Alistair Lynn
New submission from Alistair Lynn: The documentation states that __spec__ is None in–and only in–__main__. That this happens also for PEP 420 implicit namespace packages appears to be the cause of the error. -- components: Interpreter Core messages: 235357 nosy: alynn priority: normal

[issue23389] pkgutil.find_loader raises an ImportError on PEP 420 implicit namespace packages

2015-02-03 Thread Eric V. Smith
Changes by Eric V. Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue7434] general pprint rewrite

2015-02-03 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- nosy: -fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Stefan Krah
Stefan Krah added the comment: Ok, thanks! issue14203-3.diff should be correct, then. -- Added file: http://bugs.python.org/file38004/issue14203-3.diff ___ Python tracker ___ __

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0d5095a2422f by Stefan Krah in branch 'default': Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() https://hg.python.org/cpython/rev/0d5095a2422f -- ___ Python tracker

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Compiling failed on Windows: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/5650 -- ___ Python tracker ___ _

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Stefan Krah
Stefan Krah added the comment: Argh, the extern _PyBytesIOBuffer_Type hack. I knew it would cause some trouble. Any ideas how to test bytesiobuf_getbuffer() with a NULL view in a more dignified way? -- ___ Python tracker

[issue14910] argparse: disable abbreviation

2015-02-03 Thread Rémi Rampin
Rémi Rampin added the comment: It looks like the previous comments were addressed in the latest patch. Is this still planned for 3.5? Alpha 1 is next week according to PEP478. -- ___ Python tracker ___

[issue14203] PEP-3118: remove obsolete write-locks

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 17a8c5f8ca48 by Stefan Krah in branch 'default': Issue #14203: Temporary fix for the compile failure on Windows. https://hg.python.org/cpython/rev/17a8c5f8ca48 -- ___ Python tracker

[issue18454] distutils crashes when uploading to PyPI having only the username (no pw) defined

2015-02-03 Thread Jan-Philip Gehrcke
Jan-Philip Gehrcke added the comment: First, I want to address the situation in 2.7. Please have a look at my patch and my reasoning. This is my setup.py test file content: from distutils.core import setup setup(name='foo', version='1.0', packages=['testpackage']) This is the current

[issue18454] distutils crashes when uploading to PyPI having only the username (no pw) defined

2015-02-03 Thread Jan-Philip Gehrcke
Changes by Jan-Philip Gehrcke : Added file: http://bugs.python.org/file38006/issue18454_py27_prompt_test.patch ___ Python tracker ___ ___ Pyth

[issue17911] traceback: add a new thin class storing a traceback without storing local variables

2015-02-03 Thread Robert Collins
Robert Collins added the comment: This iteration provides two constructors for TracebackException, one for exception objects, one for exc_info tuples. So it should be easy to use. The __init__ takes the exc_info tuple because thats less code (much easier to destructure rather than restructure)

[issue22936] traceback module has no way to show locals

2015-02-03 Thread Robert Collins
Robert Collins added the comment: updated with the latest 17911 patch basis. -- Added file: http://bugs.python.org/file38008/issue-22936-2.patch ___ Python tracker ___ __

[issue23390] make profile-opt: test_distutils failure

2015-02-03 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: skrah priority: normal severity: normal status: open title: make profile-opt: test_distutils failure type: behavior ___ Python tracker ___ _

[issue23390] make profile-opt: test_distutils failure

2015-02-03 Thread Stefan Krah
New submission from Stefan Krah: Currently -fprofile-use etc. appear in the distutils CFLAGS, which causes test_distutils to fail. -- keywords: +patch nosy: +gregory.p.smith Added file: http://bugs.python.org/file38009/issue23390.diff ___ Python track

[issue2292] Missing *-unpacking generalizations

2015-02-03 Thread Ethan Furman
Ethan Furman added the comment: All test pass on my system. :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue23363] integer overflow in itertools.permutations

2015-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: The last fix should be applied also in 2.7 branch. -- resolution: fixed -> stage: resolved -> status: closed -> open versions: +Python 2.7, Python 3.3, Python 3.5 ___ Python tracker

[issue23364] integer overflow in itertools.product

2015-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 2.7, Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bu

[issue23365] integer overflow in itertools.combinations_with_replacement

2015-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 2.7, Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bu

[issue23366] integer overflow in itertools.combinations

2015-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 2.7, Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bu

[issue23369] integer overflow in _json.encode_basestring_ascii

2015-02-03 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- versions: +Python 3.3, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mail

[issue23390] make profile-opt: test_distutils failure

2015-02-03 Thread Gregory P. Smith
Gregory P. Smith added the comment: Likely a dupe of http://bugs.python.org/issue22904 which is why i set the buildbot up. :) I like your patch here better than my non-fixing poor hack in the other issue. I hadn't noticed CFLAGS_NODIST before. --

[issue22904] make profile-opt includes -fprofile* flags in _sysconfigdata CFLAGS

2015-02-03 Thread Gregory P. Smith
Gregory P. Smith added the comment: see also issue23390 -- superseder: -> make profile-opt: test_distutils failure ___ Python tracker ___ ___

[issue22904] make profile-opt includes -fprofile* flags in _sysconfigdata CFLAGS

2015-02-03 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue23391] Documentation of EnvironmentError (OSError) arguments disappeared

2015-02-03 Thread Martin Panter
New submission from Martin Panter: Seems to have been removed in revision 097f4fda61a4, for PEP 3151. The older EnvironmentError documentation talks about creating the exception with two and three constructor arguments, however I don’t see this in the new documentation. Is this usage meant to

[issue22963] broken link in PEP 102

2015-02-03 Thread Ezio Melotti
Ezio Melotti added the comment: The link in PEP 102 is still wrong, even though the pydotorg issue has been closed. The problem seems to affect txt PEPs (not rst ones), and it can be fixed by simply doing: diff --git a/pep2html.py b/pep2html.py --- a/pep2html.py +++ b/pep2html.py @@ -48,11 +48

[issue23389] pkgutil.find_loader raises an ImportError on PEP 420 implicit namespace packages

2015-02-03 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue23389] pkgutil.find_loader raises an ImportError on PEP 420 implicit namespace packages

2015-02-03 Thread Eric Snow
Eric Snow added the comment: Hmm. If I recall correctly, we set __spec__ for namespace packages... What's a quick way to consistently reproduce the ImportError? -- ___ Python tracker _

[issue23364] integer overflow in itertools.product

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 887526ebb013 by Serhiy Storchaka in branch '2.7': Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. https://hg.python.org/cpython/rev/887526ebb013 -- ___ Python tracker

[issue23365] integer overflow in itertools.combinations_with_replacement

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 887526ebb013 by Serhiy Storchaka in branch '2.7': Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. https://hg.python.org/cpython/rev/887526ebb013 -- ___ Python tracker

[issue23366] integer overflow in itertools.combinations

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 887526ebb013 by Serhiy Storchaka in branch '2.7': Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. https://hg.python.org/cpython/rev/887526ebb013 -- ___ Python tracker

[issue23363] integer overflow in itertools.permutations

2015-02-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset 887526ebb013 by Serhiy Storchaka in branch '2.7': Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. https://hg.python.org/cpython/rev/887526ebb013 -- ___ Python tracker

[issue23363] integer overflow in itertools.permutations

2015-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thanks Arfrever. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue22963] broken link in PEP 102

2015-02-03 Thread Berker Peksag
Berker Peksag added the comment: I've opened https://github.com/python/pythondotorg/issues/561 to track the same issue. -- ___ Python tracker ___ ___

[issue23392] Add tests for marshal FILE* API

2015-02-03 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Marshal C API functions that works with FILE* (PyMarshal_WriteLongToFile, PyMarshal_WriteObjectToFile, PyMarshal_ReadLongFromFile, PyMarshal_ReadShortFromFile, PyMarshal_ReadObjectFromFile, PyMarshal_ReadLastObjectFromFile) are not used now in CPython and

[issue23344] Faster marshalling

2015-02-03 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka dependencies: +Add tests for marshal FILE* API ___ Python tracker ___