##// END OF EJS Templates
Fix naming convention to PEP 8.
Fernando Perez -
Show More
@@ -15,7 +15,6 b' Limitations:'
15 15 won't even have these special _NN variables set at all.
16 16 """
17 17
18
19 18 #-----------------------------------------------------------------------------
20 19 # Module imports
21 20
@@ -854,7 +853,7 b' class IPythonDoctest(ExtensionDoctest):'
854 853 "have either doctests or non-doctest tests, "
855 854 "not both. [NOSE_IPDOCTEST_TESTS]")
856 855 parser.add_option('--ipdoctest-extension', action="append",
857 dest="ipdoctestExtension",
856 dest="ipdoctest_extension",
858 857 help="Also look for doctests in files with "
859 858 "this extension [NOSE_IPDOCTEST_EXTENSION]")
860 859 # Set the default as a list, if given in env; otherwise
@@ -862,16 +861,15 b' class IPythonDoctest(ExtensionDoctest):'
862 861 # an error.
863 862 env_setting = env.get('NOSE_IPDOCTEST_EXTENSION')
864 863 if env_setting is not None:
865 parser.set_defaults(ipdoctestExtension=tolist(env_setting))
864 parser.set_defaults(ipdoctest_extension=tolist(env_setting))
866 865
867 866 def configure(self, options, config):
868 867 Plugin.configure(self, options, config)
869 868 self.doctest_tests = options.ipdoctest_tests
870 self.extension = tolist(options.ipdoctestExtension)
869 self.extension = tolist(options.ipdoctest_extension)
871 870
872 871 self.parser = IPDocTestParser()
873 872 self.finder = DocTestFinder(parser=self.parser)
874 873 self.checker = IPDoctestOutputChecker()
875 874 self.globs = None
876 875 self.extraglobs = None
877
General Comments 0
You need to be logged in to leave comments. Login now