I am reading the source code of pox controller. There is an import
statement in one module called l3_editing.py
which is modified based l3_learning.py
.
The import statement is:
from pox.lib.recoco import Timer
Because I do not know Timer
, I just along with the source tree to find this struct. But I cannot find this struct Timer, which really make me confused. It should be in pox/lib/recoco.py
, but there is no module named recoco.py
under lib
package.
Items below pox/lib:
Items below pox/lib/recoco
:
The
lib
directory is a python package. It contains an__init__.py
file. When you import a package this will cause any__init__.py
file to be executed. So what's in there?Just one line:
Great we are getting closer! Lets look in
recoco.py
:There you have it!