From: david-sarah Date: Mon, 14 May 2012 16:34:31 +0000 (+0000) Subject: Improve a comment in __init__.py. X-Git-Url: https://git.rkrishnan.org/uri/URI:DIR2-RO:%5B%5E?a=commitdiff_plain;h=bf7e35146417e1e87952f0ca0cc36bd1d830a110;p=tahoe-lafs%2Ftahoe-lafs.git Improve a comment in __init__.py. --- diff --git a/src/allmydata/__init__.py b/src/allmydata/__init__.py index f7906e01..4ddea757 100644 --- a/src/allmydata/__init__.py +++ b/src/allmydata/__init__.py @@ -161,9 +161,8 @@ def get_package_versions_and_locations(): message="BaseException.message has been deprecated as of Python 2.6", append=True) - # This is to suppress various DeprecationWarnings and UserWarnings that - # occur when modules are imported. See #859, #1435 and - # http://divmod.org/trac/ticket/2994 [broken link]. + # This is to suppress various DeprecationWarnings, UserWarnings, and RuntimeWarnings + # (listed in _auto_deps.py) that occur when modules are imported. for msg in deprecation_messages: warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True)