Thread: [Assorted-commits] SF.net SVN: assorted: [693] python-commons/trunk
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-04-30 17:41:53
|
Revision: 693 http://assorted.svn.sourceforge.net/assorted/?rev=693&view=rev Author: yangzhang Date: 2008-04-30 10:42:00 -0700 (Wed, 30 Apr 2008) Log Message: ----------- removed extraneous prints, minor upgrade release Modified Paths: -------------- python-commons/trunk/publish.bash python-commons/trunk/setup.py python-commons/trunk/src/commons/files.py Modified: python-commons/trunk/publish.bash =================================================================== --- python-commons/trunk/publish.bash 2008-04-30 07:06:19 UTC (rev 692) +++ python-commons/trunk/publish.bash 2008-04-30 17:42:00 UTC (rev 693) @@ -5,7 +5,7 @@ } fullname='Python Commons' -version=0.3 +version=0.3.1 license=psf websrcs=( README ) rels=( pypi: ) Modified: python-commons/trunk/setup.py =================================================================== --- python-commons/trunk/setup.py 2008-04-30 07:06:19 UTC (rev 692) +++ python-commons/trunk/setup.py 2008-04-30 17:42:00 UTC (rev 693) @@ -9,7 +9,7 @@ pkg_info_text = """ Metadata-Version: 1.1 Name: python-commons -Version: 0.3 +Version: 0.3.1 Author: Yang Zhang Author-email: yaaang NOSPAM at REMOVECAPS gmail Home-page: http://assorted.sourceforge.net/python-commons Modified: python-commons/trunk/src/commons/files.py =================================================================== --- python-commons/trunk/src/commons/files.py 2008-04-30 07:06:19 UTC (rev 692) +++ python-commons/trunk/src/commons/files.py 2008-04-30 17:42:00 UTC (rev 693) @@ -135,7 +135,6 @@ with file( path ) as f: cache_version = load(f) except IOError, (errno, errstr): if errno != 2: raise - print cache_version, fresh_version if cache_version is None or fresh_version > cache_version: with file( path, 'w' ) as f: dump(fresh_version, f) return True @@ -164,11 +163,9 @@ """ if versioned_guard( version_path, fresh_version ): # cache obsolete, force-fetch new data - print 'here' result = cache_func() with file(cache_path, 'w') as f: dump(result, f) return result else: # cache up-to-date (should be available since dlcs-timestamp exists!) - print 'there' with file(cache_path) as f: return load(f) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-08 08:27:31
|
Revision: 723 http://assorted.svn.sourceforge.net/assorted/?rev=723&view=rev Author: yangzhang Date: 2008-05-08 01:27:37 -0700 (Thu, 08 May 2008) Log Message: ----------- updated version Modified Paths: -------------- python-commons/trunk/README python-commons/trunk/publish.bash python-commons/trunk/setup.py Modified: python-commons/trunk/README =================================================================== --- python-commons/trunk/README 2008-05-08 08:26:56 UTC (rev 722) +++ python-commons/trunk/README 2008-05-08 08:27:37 UTC (rev 723) @@ -37,9 +37,14 @@ Changes ------- -version 0.3.1 +version 0.4 - removed extraneous debug print statements +- added `logout()` context manager +- added `seq()`, `default_if_none()` +- fixed missing `import` bug +- released for [Mailing List + Filter](http://assorted.sf.net/mailing-list-filter/) version 0.3 Modified: python-commons/trunk/publish.bash =================================================================== --- python-commons/trunk/publish.bash 2008-05-08 08:26:56 UTC (rev 722) +++ python-commons/trunk/publish.bash 2008-05-08 08:27:37 UTC (rev 723) @@ -5,7 +5,7 @@ } fullname='Python Commons' -version=0.3.1 +version=0.4 license=psf websrcs=( README ) rels=( pypi: ) Modified: python-commons/trunk/setup.py =================================================================== --- python-commons/trunk/setup.py 2008-05-08 08:26:56 UTC (rev 722) +++ python-commons/trunk/setup.py 2008-05-08 08:27:37 UTC (rev 723) @@ -9,7 +9,7 @@ pkg_info_text = """ Metadata-Version: 1.1 Name: python-commons -Version: 0.3.1 +Version: 0.4 Author: Yang Zhang Author-email: yaaang NOSPAM at REMOVECAPS gmail Home-page: http://assorted.sourceforge.net/python-commons This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <yan...@us...> - 2008-05-14 18:00:07
|
Revision: 813 http://assorted.svn.sourceforge.net/assorted/?rev=813&view=rev Author: yangzhang Date: 2008-05-14 10:56:42 -0700 (Wed, 14 May 2008) Log Message: ----------- updated version numbers Modified Paths: -------------- python-commons/trunk/publish.bash python-commons/trunk/setup.py python-commons/trunk/src/commons/__init__.py Modified: python-commons/trunk/publish.bash =================================================================== --- python-commons/trunk/publish.bash 2008-05-14 17:47:51 UTC (rev 812) +++ python-commons/trunk/publish.bash 2008-05-14 17:56:42 UTC (rev 813) @@ -4,8 +4,11 @@ epydoc -o $stagedir/doc src/commons/ } +echo 'Remember to keep versions in sync in all three locations:' +echo '__init__.py, README (Changes), setup.bash, and setup.py' + fullname='Python Commons' -version=0.4 +version=0.5 license=psf websrcs=( README ) rels=( pypi: ) Modified: python-commons/trunk/setup.py =================================================================== --- python-commons/trunk/setup.py 2008-05-14 17:47:51 UTC (rev 812) +++ python-commons/trunk/setup.py 2008-05-14 17:56:42 UTC (rev 813) @@ -9,7 +9,7 @@ pkg_info_text = """ Metadata-Version: 1.1 Name: python-commons -Version: 0.4 +Version: 0.5 Author: Yang Zhang Author-email: yaaang NOSPAM at REMOVECAPS gmail Home-page: http://assorted.sourceforge.net/python-commons Modified: python-commons/trunk/src/commons/__init__.py =================================================================== --- python-commons/trunk/src/commons/__init__.py 2008-05-14 17:47:51 UTC (rev 812) +++ python-commons/trunk/src/commons/__init__.py 2008-05-14 17:56:42 UTC (rev 813) @@ -10,7 +10,7 @@ @license: PSF """ -__version__ = ( 0, 2, 0 ) +__version__ = ( 0, 5, 0 ) __all__ = [ 'async', 'control', 'decs', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |