diff options
author | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-16 15:54:04 (GMT) |
commit | fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c (patch) | |
tree | 5f0300442574c00e152284d0a223380f59dac6bf /Lib/xml/sax | |
parent | 3d6575dfc85cd11473aa93a8219ac010a823919a (diff) | |
download | cpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.zip cpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.gz cpython-fe99105835b59e66ca1fd53ea3f8bcec3ec7cb3c.tar.bz2 |
Use true booleans and PEP8 for argdefaults.
Diffstat (limited to 'Lib/xml/sax')
-rw-r--r-- | Lib/xml/sax/saxutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/sax/saxutils.py b/Lib/xml/sax/saxutils.py index e5d43a5..e845015 100644 --- a/Lib/xml/sax/saxutils.py +++ b/Lib/xml/sax/saxutils.py @@ -268,7 +268,7 @@ class XMLFilterBase(xmlreader.XMLReader): # --- Utility functions -def prepare_input_source(source, base = ""): +def prepare_input_source(source, base=""): """This function takes an InputSource and an optional base URL and returns a fully resolved InputSource object ready for reading.""" |