Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4571632
By: cyberco

Refactoring (CTRL-2-R) a variable name in one class also refactors a variable
with the same name in another class (if both classes are in the same module).
In the example below renaming (using CTRL-2-R) self.varx in class B also changes
self.varx in class A.


===CODE=============

class A(object):

    def __init__():
        self.varx = 0

class B(object):

    def __init__():
        self.varx = 0
====================



2B

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=293649

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Pydev-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pydev-users

Reply via email to