Files
python3-cookbook/source/chapters/p10_modules_and_packages.rst

18 lines
537 B
ReStructuredText
Raw Normal View History

2014-08-20 16:13:20 +08:00
=============================
2014-08-20 18:02:57 +08:00
第十章:模块与包
2014-08-20 16:13:20 +08:00
=============================
2015-04-28 15:13:01 +08:00
Modules and packages are the core of any large project, and the Python installation
itself. This chapter focuses on common programming techniques involving modules
and packages, such as how to organize packages, splitting large modules into multiple
files, and creating namespace packages. Recipes that allow you to customize the operation
of the import statement itself are also given.
2014-08-20 16:13:20 +08:00
Contents:
.. toctree::
:maxdepth: 1
:glob:
2014-08-20 18:02:57 +08:00
../c10/*