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

19 lines
601 B
ReStructuredText
Raw Normal View History

2014-08-21 10:27:10 +08:00
=============================
第十四章:测试调试和异常
=============================
2015-04-28 15:13:01 +08:00
Testing rocks, but debugging? Not so much. The fact that theres no compiler to analyze
your code before Python executes it makes testing a critical part of development. The
goal of this chapter is to discuss some common problems related to testing, debugging,
and exception handling. It is not meant to be a gentle introduction to test-driven development
or the unittest module. Thus, some familiarity with testing concepts is
assumed.
2014-08-21 10:27:10 +08:00
Contents:
.. toctree::
:maxdepth: 1
:glob:
../c14/*