diff options
author | martin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-12-29 02:46:24 +0000 |
---|---|---|
committer | martin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96> | 2008-12-29 02:46:24 +0000 |
commit | 3d27b19317f43d4665832f3eee77f888f40bf31f (patch) | |
tree | e8db6967ba5e62fcc7aff5d67255b332ce10d214 /yaml/neo20.py | |
parent | edc492628f960a3b988336c878c3c2872e34be9b (diff) |
Referenz-Parser committet.
git-svn-id: https://svn.neo-layout.org@1334 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'yaml/neo20.py')
-rw-r--r-- | yaml/neo20.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/yaml/neo20.py b/yaml/neo20.py deleted file mode 100644 index 7b66a9e..0000000 --- a/yaml/neo20.py +++ /dev/null @@ -1,16 +0,0 @@ -import yaml, sys
-
-try:
- quelle = open("neo20.yaml")
- try:
- wurzel = yaml.load(quelle) #_all entfernen
- finally:
- quelle.close()
-
-except IOError:
- pass
-except yaml.YAMLError, exc:
- if hasattr(exc, 'problem_mark'):
- mark = exc.problem_mark
- print "YAML-Parserfehler: (%s:%s)" % (mark.line+1, mark.column+1)
- sys.stdin.read()
|