> will Py3K change the standard library names in order to follow PEP 8?)
Just continue down the list of PEPs and you will find the answer: http://www.python.org/dev/peps/pep-3108/#modules-to-rename This covers built-in modules. It doesn't cover 3rd party modules, like wx. Most likely you will still see pep8 violations in non-standard modules. As for following or not following pep8 in conjunction with 3rd party modules. Just make your code look nice. Don't go out of your way to follow pep8 if it means that there will be a mix of styles that will be confusing. If you are overloading a class that is part of wx I would use the same style that wx uses. The reasoning being that people who might use that class would probably see it as just another wx class, and expect it to look and behave a certain way. Don't dissapoint them. Matt -- http://mail.python.org/mailman/listinfo/python-list