Changeset 195
- Timestamp:
- 06/19/06 16:30:29 (7 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 7 added
- 2 edited
-
Makefile (modified) (2 diffs)
-
ext (added)
-
ext/_yaml.h (added)
-
ext/_yaml.pxd (added)
-
ext/_yaml.pyx (added)
-
lib/yaml/constructor.py (modified) (2 diffs)
-
setup_ext.py (added)
-
tests/test_build_ext.py (added)
-
tests/test_yaml_ext.py (added)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/Makefile
r166 r195 1 1 2 .PHONY: default build force install test dist clean2 .PHONY: default build buildext force forceext install installext test testext dist clean 3 3 4 4 PYTHON=/usr/bin/python … … 9 9 ${PYTHON} setup.py build ${PARAMETERS} 10 10 11 buildext: 12 ${PYTHON} setup_ext.py build ${PARAMETERS} 13 11 14 force: 12 15 ${PYTHON} setup.py build -f ${PARAMETERS} 16 17 forceext: 18 ${PYTHON} setup_ext.py build -f ${PARAMETERS} 13 19 14 20 install: build 15 21 ${PYTHON} setup.py install ${PARAMETERS} 16 22 23 installext: buildext 24 ${PYTHON} setup_ext.py install ${PARAMETERS} 25 17 26 test: build 18 27 ${PYTHON} tests/test_build.py ${TEST} 19 28 20 dist: build 29 testext: buildext 30 ${PYTHON} tests/test_build_ext.py ${TEST} 31 32 dist: 21 33 ${PYTHON} setup.py sdist --formats=zip,gztar 22 34 23 windist: build35 windist: 24 36 ${PYTHON} setup.py bdist_wininst 25 37 -
pyyaml/trunk/lib/yaml/constructor.py
r175 r195 5 5 from error import * 6 6 from nodes import * 7 from composer import *8 7 9 8 try: … … 23 22 pass 24 23 25 class BaseConstructor (Composer):24 class BaseConstructor: 26 25 27 26 yaml_constructors = {}
Note: See TracChangeset
for help on using the changeset viewer.
