[CalendarServer-changes] [5311] CalendarServer/trunk/twext

source_changes at macosforge.org source_changes at macosforge.org
Mon Mar 15 13:23:44 PDT 2010


Revision: 5311
          http://trac.macosforge.org/projects/calendarserver/changeset/5311
Author:   wsanchez at apple.com
Date:     2010-03-15 13:23:44 -0700 (Mon, 15 Mar 2010)
Log Message:
-----------
Pyflakes.

Modified Paths:
--------------
    CalendarServer/trunk/twext/internet/kqreactor.py
    CalendarServer/trunk/twext/python/memcacheclient.py
    CalendarServer/trunk/twext/python/vcomponent.py

Modified: CalendarServer/trunk/twext/internet/kqreactor.py
===================================================================
--- CalendarServer/trunk/twext/internet/kqreactor.py	2010-03-15 20:18:28 UTC (rev 5310)
+++ CalendarServer/trunk/twext/internet/kqreactor.py	2010-03-15 20:23:44 UTC (rev 5311)
@@ -27,7 +27,7 @@
 
 from zope.interface import implements
 
-from twisted.python import log, failure
+from twisted.python import log
 from twisted.internet import main, posixbase
 from twisted.internet.interfaces import IReactorFDSet
 

Modified: CalendarServer/trunk/twext/python/memcacheclient.py
===================================================================
--- CalendarServer/trunk/twext/python/memcacheclient.py	2010-03-15 20:18:28 UTC (rev 5310)
+++ CalendarServer/trunk/twext/python/memcacheclient.py	2010-03-15 20:23:44 UTC (rev 5311)
@@ -385,7 +385,6 @@
         for server in dead_servers:
             del server_keys[server]
 
-        notstored = [] # original keys.
         for server, keys in server_keys.iteritems():
             try:
                 for key in keys:

Modified: CalendarServer/trunk/twext/python/vcomponent.py
===================================================================
--- CalendarServer/trunk/twext/python/vcomponent.py	2010-03-15 20:18:28 UTC (rev 5310)
+++ CalendarServer/trunk/twext/python/vcomponent.py	2010-03-15 20:23:44 UTC (rev 5311)
@@ -18,9 +18,15 @@
 iCalendar utilities
 """
 
+__all__ = [
+    "VComponent",
+    "VProperty",
+    "InvalidICalendarDataError",
+]
+
 # FIXME: Move twistedcaldav.ical here, but that module needs some
 # cleanup first.  Perhaps after porting to libical?
 
-from twistedcaldav.ical import InvalidICalendarDataError
 from twistedcaldav.ical import Component as VComponent
 from twistedcaldav.ical import Property as VProperty
+from twistedcaldav.ical import InvalidICalendarDataError
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100315/43daaaad/attachment-0001.html>


More information about the calendarserver-changes mailing list