r46984 - twistedchecker

hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Thu, 10 Mar 2016 23:48:15 -0700 (MST)
Newsgroups gmane.comp.python.twisted.commits
Message-ID <[email protected]>
Author: hawkowl
Date: Thu Mar 10 23:48:10 2016
New Revision: 46984

Modified:
   branches/manhole-hardcodedkey-8229/twisted/python/_appdirs.py
   branches/manhole-hardcodedkey-8229/twisted/python/test/test_appdirs.py

Log:
twistedchecker

Modified: branches/manhole-hardcodedkey-8229/twisted/python/_appdirs.py
==============================================================================
--- branches/manhole-hardcodedkey-8229/twisted/python/_appdirs.py	(original)
+++ branches/manhole-hardcodedkey-8229/twisted/python/_appdirs.py	Thu Mar 10 23:48:10 2016
@@ -1,3 +1,4 @@
+# -*- test-case-name: twisted.python.test.test_appdirs -*-
 # Copyright (c) Twisted Matrix Laboratories.
 # See LICENSE for details.
 
@@ -17,6 +18,10 @@
     """
     Get a data directory for the caller function, or C{moduleName} if given.
 
+    @param moduleName: The module name if you don't wish to have the caller's
+        module.
+    @type moduleName: L{str}
+
     @returns: A directory for putting data in.
     @rtype: L{str}
     """

Modified: branches/manhole-hardcodedkey-8229/twisted/python/test/test_appdirs.py
==============================================================================
--- branches/manhole-hardcodedkey-8229/twisted/python/test/test_appdirs.py	(original)
+++ branches/manhole-hardcodedkey-8229/twisted/python/test/test_appdirs.py	Thu Mar 10 23:48:10 2016
@@ -16,7 +16,9 @@
 
 
 class AppdirsTests(unittest.TestCase):
-
+    """
+    Tests for L{_appdirs}.
+    """
     if not _appdirs:
         skip = "appdirs package not installed"