Remove unnecessary properties that broke Python 2.4.
Review Request #2929 — Created Feb. 28, 2012 and submitted — Latest diff uploaded
Remove unnecessary properties that broke Python 2.4. There were some @property instances in SCMClient. Some of these used @property.setter, which isn't on Python 2.4, and this broke 2.4 support. These weren't needed. They did nothing but set/get a variable. So, replace them with the variable itself.
Unit tests pass. I was able to post this review request.
rbtools/clients/__init__.py |
---|
rbtools/clients/clearcase.py |
---|
rbtools/clients/git.py |
---|
rbtools/clients/mercurial.py |
---|
rbtools/clients/perforce.py |
---|
rbtools/clients/plastic.py |
---|
rbtools/clients/svn.py |
---|