cs107-lecture-examples

Example codes used during Harvard CS107 lectures
git clone https://git.0xfab.ch/cs107-lecture-examples.git
Log | Files | Refs | README | LICENSE

__init__.py (328B)


      1 """Docstring for cs107_package test package
      2 
      3 Some Python features were discussed using this package related to packaging and
      4 distribution of Python packages in lecture 9.
      5 
      6 """
      7 
      8 from .subpkg_1 import (foo, bar)
      9 from .subpkg_2 import baz
     10 from .example import foo as numpy_example
     11 
     12 __all__ = ['foo', 'bar', 'baz', 'numpy_example']