Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Still using old-style class definitions. #159

Closed
nicerobot opened this issue Sep 24, 2013 · 0 comments
Closed

Still using old-style class definitions. #159

nicerobot opened this issue Sep 24, 2013 · 0 comments

Comments

@nicerobot
Copy link

The old-style classes are used throughout TileStache. e.g.

class Layer:

Better:

class Layer(object):

Try (step 1):

find . -name '*.py' | xargs perl -pi -e 's/((^|[ ])class [^ (:]+?):/$1(object):/'

My minimal testing so far shows no issues with this change by i haven't run any thorough test suite to compare before and after.

Also see: Possible problems moving to the new classes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant