aboutsummaryrefslogtreecommitdiff
path: root/lib3
diff options
context:
space:
mode:
authorDavid Kao <dthkao@gmail.com>2019-03-15 11:21:40 -0700
committerTina Müller (tinita) <cpan2@tinita.de>2019-12-03 23:58:55 +0100
commitde11e43d5247991ee2892df4c9dcba434afb6cb6 (patch)
tree49db67cf3e6e90de7923620e66edb785f7784c35 /lib3
parenta7a97871fce027d8c3da0d96117f5b71536b8244 (diff)
downloadpyyaml-de11e43d5247991ee2892df4c9dcba434afb6cb6.tar.gz
fix typos and stylistic nit
Diffstat (limited to 'lib3')
-rw-r--r--lib3/yaml/constructor.py4
-rw-r--r--lib3/yaml/loader.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib3/yaml/constructor.py b/lib3/yaml/constructor.py
index fb4f1e9..f8d71a1 100644
--- a/lib3/yaml/constructor.py
+++ b/lib3/yaml/constructor.py
@@ -513,7 +513,7 @@ class FullConstructor(SafeConstructor):
except ImportError as exc:
raise ConstructorError("while constructing a Python module", mark,
"cannot find module %r (%s)" % (name, exc), mark)
- if not name in sys.modules:
+ if name not in sys.modules:
raise ConstructorError("while constructing a Python module", mark,
"module %r is not imported" % name, mark)
return sys.modules[name]
@@ -533,7 +533,7 @@ class FullConstructor(SafeConstructor):
except ImportError as exc:
raise ConstructorError("while constructing a Python object", mark,
"cannot find module %r (%s)" % (module_name, exc), mark)
- if not module_name in sys.modules:
+ if module_name not in sys.modules:
raise ConstructorError("while constructing a Python object", mark,
"module %r is not imported" % module_name, mark)
module = sys.modules[module_name]
diff --git a/lib3/yaml/loader.py b/lib3/yaml/loader.py
index 414cb2c..e90c112 100644
--- a/lib3/yaml/loader.py
+++ b/lib3/yaml/loader.py
@@ -51,7 +51,7 @@ class Loader(Reader, Scanner, Parser, Composer, Constructor, Resolver):
# UnsafeLoader is the same as Loader (which is and was always unsafe on
# untrusted input). Use of either Loader or UnsafeLoader should be rare, since
# FullLoad should be able to load almost all YAML safely. Loader is left intact
-# to ensure backwards compatability.
+# to ensure backwards compatibility.
class UnsafeLoader(Reader, Scanner, Parser, Composer, Constructor, Resolver):
def __init__(self, stream):