[issue26188] Provide more helpful error message when `await` is called inside non-`async` method

2016-01-24 Thread SilentGhost
Changes by SilentGhost : -- components: +asyncio nosy: +giampaolo.rodola, gvanrossum, haypo, pitrou, yselivanov ___ Python tracker ___ ___

[issue26188] Provide more helpful error message when `await` is called inside non-`async` method

2016-01-24 Thread aditya gupta
Changes by aditya gupta : -- nosy: +aditya gupta ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue26190] GC memory leak using weak and cyclic references

2016-01-24 Thread Maximilian Köhl
New submission from Maximilian Köhl: In the attached code the object initially bind to `a` is never garbage collected although there are no references left. The finalizer of `b` is executed and the weak reference to it becomes dead however the garbage collector does not free the object itself

[issue26190] GC memory leak using weak and cyclic references

2016-01-24 Thread Maximilian Köhl
Changes by Maximilian Köhl : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Anders Rundgren
New submission from Anders Rundgren: pip install Crypto Terminates correctly and the package is there as well. Unfortunately the directory is named "crypto" rather than "Crypto" so when I perform >>>import Crypto the interpreter fails. >>>import crypto seems to work but is incompatible ove

[issue26192] python3 k1om dissociation permanence: libffi

2016-01-24 Thread ƦOB COASTN
New submission from ƦOB COASTN: initial patch attached for Python-3.4.4 This patch requires rework. I am willing to implement the __MIC__ or __KNC__ into a new patch if this is in fact the route forward that seems optimal. Thanks, Rob > Enabling the build system for Intel MIC k1om is non-tri

[issue26192] python3 k1om dissociation permanence: libffi

2016-01-24 Thread SilentGhost
Changes by SilentGhost : -- components: +Extension Modules nosy: +doko versions: -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___ _

[issue26193] python3 k1om dissociation permanence: readelf

2016-01-24 Thread ƦOB COASTN
New submission from ƦOB COASTN: > 2.) ./configure script halts during failure to locate readelf for the host. > > I simply commented out these lines in the ./configure file: > #if test "$cross_compiling" = yes; then > #case "$READELF" in > #readelf|:) > #as_fn_error $? "readelf for t

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread SilentGhost
SilentGhost added the comment: Assuming that you're talking about https://pypi.python.org/pypi/crypto/ - it is unfortunate that pip is so lax with capitalisation rules when installing a package, but as far as I can see there isn't a "Crypto" package anywhere and you're never encouraged to use

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Donald Stufft
Donald Stufft added the comment: If you're trying to use PyCrypto then you need to install PyCrypto, crypto is a different package. Try ``pip install PyCrypto``. -- nosy: +dstufft ___ Python tracker __

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Anders Rundgren
Anders Rundgren added the comment: You are right. Pardon me for erring :-( Thanks for the quick response BTW! Anders -- ___ Python tracker ___ _

[issue26194] Undefined behavior for deque.insert() when len(d) == maxlen

2016-01-24 Thread Raymond Hettinger
New submission from Raymond Hettinger: The behavior of deque.insert() in a bounded deque is a bit odd: >>> from collections import deque >>> d = deque(range(20), maxlen=10) >>> d deque([10, 11, 12, 13, 14, 15, 16, 17, 18, 19], maxlen=10) >>> d.insert(3, 'New') >>> d deque([19, 10, 11, 'New', 13,

[issue25296] Simple End-of-life guide covering all unsupported versions

2016-01-24 Thread Katie McLaughlin
Katie McLaughlin added the comment: Hello! I recently saw an announcement[0] about the adding of the lifecycle status right at the top of the devguide[1]. I believe this was added as part of Issue 26165[2] Given this, can this issue be marked as Resolved? 0 - https://twitter.com/gvanrossum/s

[issue25296] Simple End-of-life guide covering all unsupported versions

2016-01-24 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-

[issue26195] Windows frozen .exe multiprocessing.Queue access is denied exception

2016-01-24 Thread Alex Robinson
New submission from Alex Robinson: A pyinstaller 3.0 frozen .exe Python 2.7.10 program under Windows 7 that uses a multiprocessing.Queue to send things to a multiprocessing.Process leads to the process getting access-is-denied exceptions on every q.get() call. And, when the program can't exit.