diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2020-02-28 00:27:27 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-02-28 00:27:27 +0000 |
| commit | 132006ba8a714199d4f761b0e66fc2e516e46ba3 (patch) | |
| tree | d66e54051a92d4842db8dff989ec1d4143f7a586 /examples/elementtree | |
| parent | f78db5e1f68d6b2fb6a7acc04036f682d9a22974 (diff) | |
| parent | a836e3df5d973f75bd8330cecb76511b67c13612 (diff) | |
| download | sqlalchemy-132006ba8a714199d4f761b0e66fc2e516e46ba3.tar.gz | |
Merge "Remove print statement in favor of print() function in docs and examples"
Diffstat (limited to 'examples/elementtree')
| -rw-r--r-- | examples/elementtree/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/elementtree/__init__.py b/examples/elementtree/__init__.py index 82bb87361..b2d90a739 100644 --- a/examples/elementtree/__init__.py +++ b/examples/elementtree/__init__.py @@ -17,7 +17,7 @@ E.g.:: # locate documents with a certain path/attribute structure for document in find_document('/somefile/header/field2[@attr=foo]'): # dump the XML - print document + print(document) .. autosource:: :files: pickle_type.py, adjacency_list.py, optimized_al.py |
