.. -*- coding: utf-8 -*- Version 0.19.0 -------------- :publication date: 2009/03/25 :expected date: n/a Ticket #3873 better handling of del statements ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.500 :state: resolved In the following code snippet, astng should be able to see that after the del statement, the deleted symbol is not reachable:: class Frobble: pass Frobble.mumble = True del Frobble def run(): f = Frobble() Ticket #8724 could somewhat understant the property decorator ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: enhancement :load: 0.200 :state: resolved eg return results of calling the decorated function. Ticket #8603 2.6 _ast nodes changed to type, can't be monkey-patched ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 1.000 :state: resolved Ticket #4020 missing egg support ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 1.000 :state: resolved for example, I have a module named 'itcc.core', more information as belows. :: $ python -c "import sys; import itcc.core; print sys.modules['itcc.core']" but pylint does not support this kind of module, and give E0611 on this. :: $ echo "import itcc.core" > bug.py $ pylint bug.py ************* Module bug C0111: 1: Missing docstring E0611: 1: No name 'core' in module 'itcc' W0611: 1: Unused import itcc NOTE: this is more likely a logilab-astng or logilab-common pb