How can I use Python for large scale development?

后端 未结 8 1272
梦谈多话
梦谈多话 2021-01-29 21:33

I would be interested to learn about large scale development in Python and especially in how do you maintain a large code base?

  • When you make incompatibility ch

8条回答
  •  长发绾君心
    2021-01-29 21:57

    The usual answer to that is testing testing testing. You're supposed to have an extensive unit test suite and run it often, particularly before a new version goes online.

    Proponents of dynamically typed languages make the case that you have to test anyway because even in a statically typed language conformance to the crude rules of the type system covers only a small part of what can potentially go wrong.

提交回复
热议问题