Rich Lane | 6242d9f | 2013-01-06 17:35:39 -0800 | [diff] [blame] | 1 | """ |
| 2 | Python OpenFlow 1.0 library |
| 3 | |
| 4 | Most of the files in this package are automatically generated by tools/munger. |
| 5 | They are checked in to simplify running OFTest. |
| 6 | """ |
| 7 | |
| 8 | __all__ = ["action_list", "action", "cstruct", "error", "message", "parse"] |
Rich Lane | aecd716 | 2013-01-11 11:33:00 -0800 | [diff] [blame] | 9 | |
| 10 | # Allow accessing constants through the top-level module |
| 11 | from cstruct import * |
| 12 | |
| 13 | # Allow accessing submodules without additional imports |
| 14 | import action |
| 15 | import message |
| 16 | import parse |