minor PEP8 cleanup (" -> ')

This commit is contained in:
Overwatch 2014-08-19 16:29:56 +02:00
parent 6416b66f6e
commit 61fb3b1044
18 changed files with 456 additions and 456 deletions

View file

@ -1,6 +1,6 @@
cdef class Module:
def __init__(self, name, provides=set(), requires=set(), common=set()):
"""
'''
* Modules are identified by their name which has to be unique within the Aggregate's namespace.
* The provides sequence contains keywords which are copied into Aggregate's _provided list.
Two modules providing the same export can't be linked into the same Aggregate.
@ -9,9 +9,9 @@ cdef class Module:
* All names in the Module's namespace that don't begin with an underscore will be exported
into the Aggregate's namespace.
* If you want to call one method on multiple modules, these modules must all export the method name
in their "common" set. Otherwise a name collision is raised. Their methods will be called in the
in their 'common' set. Otherwise a name collision is raised. Their methods will be called in the
same order in which the modules were linked.
"""
'''
self._top = None
self._name = name