Changes by Andrea Corbellini :
--
versions: +Python 3.1, Python 3.2, Python 3.3, Python 3.4
___
Python tracker
<http://bugs.python.org/issue18454>
___
___
Pytho
New submission from Andrea Corbellini:
I'd really appreciate if `venv` could create environments without symlinks.
Working on many Python projects, each one with different requirements, I prefer
to keep everything I need in a single virtualenv directory, rather than two
(one fo
Changes by Andrea Corbellini :
--
nosy: +candrea
___
Python tracker
<http://bugs.python.org/issue812369>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrea Corbellini added the comment:
This is an unwanted an unexpected behavior, so this is a bug by definition. If
it's not easy to fix, it's a different matter.
However here's a proposed solution:
* for the __mro__: instead of using a tuple, use a new object that inherits
Andrea Corbellini added the comment:
Having a __del__ inside a metaclass is strange, I know... but probably there
are situations where you need to do so. Why shouldn't a developer be able to
add a __del__ to a metaclass without creating uncollectable objects? I don't
think this b
Andrea Corbellini added the comment:
Disabling the GC can increase performances (although not significantly). But
this bug is the cause of other problems too: what if the metaclass contains a
__del__() method?
An another issue that I've found is that debugging is harder. I always t
New submission from Andrea Corbellini :
Creating a class (either using the 'class' statement or using type()) creates a
circular reference.
I've attached a script that simply demonstrates this. The problem is caused by
the fact that MyClass.__dict__['__dict__'
Andrea Corbellini added the comment:
Well, writing every time 'from X import Y' looks to me uncomfortable.
But of course what I'm asking is not essential :-)
___
Python tracker
<http://bugs.py
Changes by Andrea Corbellini :
--
type: -> feature request
___
Python tracker
<http://bugs.python.org/issue5082>
___
___
Python-bugs-list mailing list
Un
New submission from Andrea Corbellini :
Most of the Python frameworks have some functions and classes that are
widely used. For example a 'log.debug' function will be used in almost
all modules. It is inconvenient to write 'import log' every time.
It would be useful to hav
10 matches
Mail list logo