diff options
author | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 +0000 |
commit | fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c (patch) | |
tree | 5f0300442574c00e152284d0a223380f59dac6bf /Lib/xml/dom/domreg.py | |
parent | 3d6575dfc85cd11473aa93a8219ac010a823919a (diff) | |
download | cpython-git-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.gz |
Use true booleans and PEP8 for argdefaults.
Diffstat (limited to 'Lib/xml/dom/domreg.py')
-rw-r--r-- | Lib/xml/dom/domreg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/dom/domreg.py b/Lib/xml/dom/domreg.py index 67e0104d27..cb35bb0596 100644 --- a/Lib/xml/dom/domreg.py +++ b/Lib/xml/dom/domreg.py @@ -36,7 +36,7 @@ def _good_enough(dom, features): return 0 return 1 -def getDOMImplementation(name = None, features = ()): +def getDOMImplementation(name=None, features=()): """getDOMImplementation(name = None, features = ()) -> DOM implementation. Return a suitable DOM implementation. The name is either |