Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
cdafb863
Commit
cdafb863
authored
Mar 11, 2010
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
f85c0c4e
e93917ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
25 deletions
+1
-25
Cython/Plex/test_tm.py
Cython/Plex/test_tm.py
+0
-24
Makefile
Makefile
+1
-1
No files found.
Cython/Plex/test_tm.py
deleted
100644 → 0
View file @
f85c0c4e
import
sys
sys
.
stderr
=
sys
.
stdout
from
TransitionMaps
import
TransitionMap
m
=
TransitionMap
()
print
m
def
add
(
c
,
s
):
print
print
"adding"
,
repr
(
c
),
"-->"
,
repr
(
s
)
m
.
add_transition
(
c
,
s
)
print
m
print
"keys:"
,
m
.
keys
()
add
(
'a'
,
'alpha'
)
add
(
'e'
,
'eta'
)
add
(
'f'
,
'foo'
)
add
(
'i'
,
'iota'
)
add
(
'i'
,
'imp'
)
add
(
'eol'
,
'elephant'
)
Makefile
View file @
cdafb863
...
...
@@ -22,7 +22,7 @@ repo: .hg
clean
:
@
echo
Cleaning Source
@
rm
-fr
build
@
rm
-f
*
.py
c
*
/
*
.pyc
*
/
*
/
*
.pyc
@
rm
-f
*
.py
[co]
*
/
*
.py[co]
*
/
*
/
*
.py[co]
*
/
*
/
*
/
*
.py[co]
@
rm
-f
*
.so
*
/
*
.so
*
/
*
/
*
.so
@
rm
-f
*
.pyd
*
/
*
.pyd
*
/
*
/
*
.pyd
@
rm
-f
*
~
*
/
*
~
*
/
*
/
*
~
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment