repo.or.cz
/
gsh.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More or less done (tree instead of p2p)
[gsh.git]
/
bin
/
polysh
blob
c6bec27627d2de6e8db6bb3cc998e767682cc95e
1
#!/usr/bin/env python
2
3
try
:
4
from
polysh
.
main
import
main
5
except
ImportError
,
e
:
6
print
e
7
print
'To run an uninstalled copy of polysh,'
8
print
'launch polysh.py in the top directory'
9
else
:
10
main
()