Hi all,
I noticed __qualname__ is exposed by locals() while defining a class. This
is handy but I'm not sure about its status: is it standard or just an
artifact of the current implementation? (btw, the pycodestyle linter
-former pep8- rejects its usage). I was unable to find any reference to
this
On Wed, 06 Jul 2016 16:14:34 -, Alexandru Croitor
wrote:
> I'm interested to find out if debugging Python scripts with GDB is supported
> on OSX at all?
>
> I'm referring to the functionality described on
> https://wiki.python.org/moin/DebuggingWithGdb and on
> http://fedoraproject.org/wi
On 07Jul2016 0624, Barry Warsaw wrote:
On Jul 07, 2016, at 08:12 AM, Eric V. Smith wrote:
One thing to keep in mind if we do this is how it interacts with the -S
command line option to not include site-packages in sys.path. I currently use
-S to basically mean "give my python as it was distribu
Hello,
I'm interested to find out if debugging Python scripts with GDB is supported on
OSX at all?
I'm referring to the functionality described on
https://wiki.python.org/moin/DebuggingWithGdb and on
http://fedoraproject.org/wiki/Features/EasierPythonDebugging.
I've tried so far various combi
Hello,
This is a monthly ping to get a review on http://bugs.python.org/issue26415 --
"Excessive peak memory consumption by the Python parser".
The first patch of the series (an NFC refactoring) was successfully committed
earlier in June, so the next step is to get the second patch, "the payload
Yes, not too long ago I installed "every" Python package on Ubuntu, and
Python basically would not start. Perhaps some plugin system was trying to
import everything and caused a segfault in GTK. The "short sys.path" model
of everything installed is importable has its limits.
On Thu, Jul 7, 2016 at
On Jul 07, 2016, at 08:12 AM, Eric V. Smith wrote:
>One thing to keep in mind if we do this is how it interacts with the -S
>command line option to not include site-packages in sys.path. I currently use
>-S to basically mean "give my python as it was distributed, and don't include
>anything that w
On 7/6/2016 10:44 PM, Nick Coghlan wrote:
The point of overlap I see is that if the stdlib starts putting some
selected modules into site-packages (so "pip install --upgrade
" works without any changes to pip or equivalent tools),
then that also solves the "How to explicitly declare dependencies