Changeset 149
- Timestamp:
- 04/23/06 09:40:57 (7 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 1 added
- 2 edited
-
README (modified) (1 diff)
-
lib/yaml/scanner.py (modified) (1 diff)
-
tests/data/colon-in-flow-context.loader-error (added)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/README
r128 r149 1 PyYAML 3000 - The next generation YAML parser for Python.1 PyYAML 3000 - The next generation YAML parser and emitter for Python. 2 2 3 3 To install, type 'python setup.py install'. 4 4 5 For more information, check 'http://pyyaml.org/wiki/PyYAML'. 5 For more information, check the PyYAML homepage: 6 'http://pyyaml.org/wiki/PyYAML'. 6 7 7 8 Post your questions and opinions to the YAML-Core mailing list: 8 9 'http://lists.sourceforge.net/lists/listinfo/yaml-core'. 9 10 10 PyYAML3000 is written by Kirill Simonov <xi@resolvent.net>. It is released 11 Submit bug reports and feature requests to the PyYAML bug tracker: 12 'http://pyyaml.org/newticket?component=pyyaml'. 13 14 PyYAML 3000 is written by Kirill Simonov <xi@resolvent.net>. It is released 11 15 under the MIT license. See the file LICENSE for more details. -
pyyaml/trunk/lib/yaml/scanner.py
r138 r149 1302 1302 break 1303 1303 length += 1 1304 # It's not clear what we should do with ':' in the flow context. 1305 if (self.flow_level and ch == u':' 1306 and self.peek(length+1) not in u'\0 \t\r\n\x28\u2028\u2029,[]{}'): 1307 self.forward(length) 1308 raise ScannerError("while scanning a plain scalar", start_mark, 1309 "found unexpected ':'", self.get_mark(), 1310 "Please check http://pyyaml.org/wiki/YAMLColonInFlowContext for details.") 1304 1311 if length == 0: 1305 1312 break
Note: See TracChangeset
for help on using the changeset viewer.
