[pyKoL-users] SF.net SVN: pykol: [29] trunk
Brought to you by:
scelis
From: <mi...@us...> - 2007-08-17 12:12:38
|
Revision: 29 http://pykol.svn.sourceforge.net/pykol/?rev=29&view=rev Author: misza13 Date: 2007-08-17 05:12:37 -0700 (Fri, 17 Aug 2007) Log Message: ----------- Added __version__ tags on all files. Modified Paths: -------------- trunk/icypeak.py trunk/kol/__init__.py trunk/kol/adventure.py trunk/kol/campground.py trunk/kol/kolsite.py trunk/kol/mall.py trunk/test.py Modified: trunk/icypeak.py =================================================================== --- trunk/icypeak.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/icypeak.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,7 +4,8 @@ # # Distributed under the terms of the MIT license. # - +__version__ = '$Id: $' +# import sys sys.path.append('.') Modified: trunk/kol/__init__.py =================================================================== --- trunk/kol/__init__.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/kol/__init__.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,3 +4,5 @@ # # Distributed under the terms of the MIT license. # +__version__ = '$Id: $' +# Modified: trunk/kol/adventure.py =================================================================== --- trunk/kol/adventure.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/kol/adventure.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,9 +4,11 @@ # # Distributed under the terms of the MIT license. # - +__version__ = '$Id: $' +# import re + class AutoAdventurer: def __init__(self, site): self.site = site Modified: trunk/kol/campground.py =================================================================== --- trunk/kol/campground.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/kol/campground.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,9 +4,11 @@ # # Distributed under the terms of the MIT license. # - +__version__ = '$Id: $' +# import re + class Campground: def __init__(self, site): self.site = site Modified: trunk/kol/kolsite.py =================================================================== --- trunk/kol/kolsite.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/kol/kolsite.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,6 +4,8 @@ # # Distributed under the terms of the MIT license. # +__version__ = '$Id: $' +# import re, urllib, httplib try: Modified: trunk/kol/mall.py =================================================================== --- trunk/kol/mall.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/kol/mall.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,10 +4,13 @@ # # Distributed under the terms of the MIT license. # +__version__ = '$Id: $' +# import re import kolsite + class Mall: def __init__(self, Site): self.Site = Site Modified: trunk/test.py =================================================================== --- trunk/test.py 2007-08-17 12:09:42 UTC (rev 28) +++ trunk/test.py 2007-08-17 12:12:37 UTC (rev 29) @@ -4,6 +4,8 @@ # # Distributed under the terms of the MIT license. # +__version__ = '$Id: $' +# import sys, random from kol.kolsite import KoLSite from kol.mall import Mall @@ -30,5 +32,6 @@ for s in M.searchItem('tiny plastic sword'): print s + if __name__ == '__main__': main() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |