diff options
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()
|