diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-18 07:07:37 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-18 07:07:37 +0000 |
commit | 8123aa36741c3819ab59e68964da2cb1a19f9c4f (patch) | |
tree | 8e01f743ebb7f594abe8b7a4cb586bbe2446bb46 /math/py-gato/files/patch-GatoUtil.py | |
parent | Update pilot-link port to 0.11.8. (diff) |
Update to 0.98I of 12/05/2003. The old version had not been fetchable
for over a year. Adds priority queues, reworks menus, better integration
with TK.
Since the current maintainer is temporarily away from FreeBSD, anyone
interested in this port should consider volunteering to be its maintainer.
It appears to still be under active development.
Notes
Notes:
svn path=/head/; revision=96132
Diffstat (limited to 'math/py-gato/files/patch-GatoUtil.py')
-rw-r--r-- | math/py-gato/files/patch-GatoUtil.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/math/py-gato/files/patch-GatoUtil.py b/math/py-gato/files/patch-GatoUtil.py deleted file mode 100644 index 7cdcf9b766a1..000000000000 --- a/math/py-gato/files/patch-GatoUtil.py +++ /dev/null @@ -1,13 +0,0 @@ ---- GatoUtil.py.orig Wed May 16 13:16:56 2001 -+++ GatoUtil.py Mon Sep 3 12:14:42 2001 -@@ -40,8 +40,8 @@ - - def extension(pathAndFile): - """ Return ext if path/filename.ext is given """ -- import regsub -- return regsub.split(stripPath(pathAndFile),"\.")[1] -+ import re -+ return re.split("\.", stripPath(pathAndFile))[1] - - def stripPath(pathAndFile): - """ Return filename.ext if path/filename.ext is given """ |