]> granicus.if.org Git - zziplib/commit
docs: exception syntax compatibility with Python 3
authorPatrick Steinhardt <ps@pks.im>
Thu, 23 May 2019 20:20:23 +0000 (22:20 +0200)
committerPatrick Steinhardt <ps@pks.im>
Thu, 1 Aug 2019 08:14:04 +0000 (10:14 +0200)
commitf8e91414a1e11c8c81da654c48a58be3af8b2cb2
treeb194a8a44c82f9dd6044b4745c06a8a53e8477cb
parent05a6e4bffd3ac04f3fff96310800d6d7d5c54f6c
docs: exception syntax compatibility with Python 3

Since Python 2.7, there exists a new syntax to catch errors: the old way
of saying `except IOError, error` has been replaced with `except IOError
as e`. The old syntax has finally been removed in Python 3, but as we're
still using it in zziplib newer interpreters will raise a parsing error.

Convert to use the new syntax to improve compatibility with Python 3.
docs/make-doc.py
docs/zzipdoc/commentmarkup.py
docs/zzipdoc/docbookdocument.py
docs/zzipdoc/functionlisthtmlpage.py
docs/zzipdoc/htm2dbk.py
docs/zzipdoc/htmldocument.py
docs/zzipdoc/textfile.py