From c6dea09b19c65d655c6973da84c530984071a750 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Mon, 21 May 2012 19:38:48 +0100 Subject: [PATCH] Updated @since epydoc for new release --- zeroinstall/apps.py | 2 +- zeroinstall/cmd/select.py | 2 +- zeroinstall/injector/background.py | 2 +- zeroinstall/injector/requirements.py | 2 +- zeroinstall/support/__init__.py | 2 +- zeroinstall/support/xmltools.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/zeroinstall/apps.py b/zeroinstall/apps.py index 6b4b65b..7f9bcf3 100644 --- a/zeroinstall/apps.py +++ b/zeroinstall/apps.py @@ -1,6 +1,6 @@ """ Support for managing apps (as created with "0install add"). -@since: 1.8 +@since: 1.9 """ # Copyright (C) 2012, Thomas Leonard diff --git a/zeroinstall/cmd/select.py b/zeroinstall/cmd/select.py index 58bff0f..45e5603 100644 --- a/zeroinstall/cmd/select.py +++ b/zeroinstall/cmd/select.py @@ -68,7 +68,7 @@ def get_selections(config, options, iface_uri, select_only, download_only, test_ def get_selections_for(requirements, config, options, select_only, download_only, test_callback): """Get selections for given requirements. - @since: 1.8""" + @since: 1.9""" if options.offline: config.network_use = model.network_offline diff --git a/zeroinstall/injector/background.py b/zeroinstall/injector/background.py index 274d8be..6b114ae 100644 --- a/zeroinstall/injector/background.py +++ b/zeroinstall/injector/background.py @@ -267,7 +267,7 @@ def spawn_background_update2(requirements, verbose, app = None): @type verbose: bool @param app: application to update (if any) @type app: L{apps.App} | None - @since: 1.8""" + @since: 1.9""" if _detach(): return diff --git a/zeroinstall/injector/requirements.py b/zeroinstall/injector/requirements.py index 55a6498..4f97447 100644 --- a/zeroinstall/injector/requirements.py +++ b/zeroinstall/injector/requirements.py @@ -49,7 +49,7 @@ class Requirements(object): def parse_update_options(self, options): """Update the settings based on the options (used for "0install update APP"). - @since: 1.8""" + @since: 1.9""" for key in ['not_before', 'before', 'message', 'cpu', 'os', 'command']: value = getattr(options, key) if value is not None: diff --git a/zeroinstall/support/__init__.py b/zeroinstall/support/__init__.py index afc70a6..e6327f1 100644 --- a/zeroinstall/support/__init__.py +++ b/zeroinstall/support/__init__.py @@ -96,7 +96,7 @@ def portable_rename(src, dst): """Rename 'src' to 'dst', which must be on the same filesystem. On POSIX systems, this operation is atomic. On Windows, do the best we can by deleting dst and then renaming. - @since: 1.8""" + @since: 1.9""" if os.name == "nt" and os.path.exists(dst): os.unlink(dst) os.rename(src, dst) diff --git a/zeroinstall/support/xmltools.py b/zeroinstall/support/xmltools.py index 6ea0e32..a7a42a1 100644 --- a/zeroinstall/support/xmltools.py +++ b/zeroinstall/support/xmltools.py @@ -1,5 +1,5 @@ """Convenience functions for handling XML. -@since: 1.8 +@since: 1.9 """ # Copyright (C) 2012, Thomas Leonard -- 2.11.4.GIT