-
Book Overview & Buying
-
Table Of Contents
Hands-On Software Engineering with Python - Second Edition
By :
The relevant portions of the original code from the first edition of this book have been copied to the chapter repository, in the CH09-code directory at https://github.com/PacktPublishing/Hands-On-Software-Engineering-with-Python-Second-Edition/tree/main/CH09-code. In the process, it was lightly cleaned, with most of that effort focused on ensuring that the code could be represented in the text of the book without alteration, should the need arise. All of it can be run in a Python 3.11 environment, though doing so will only show that the syntax and structure are valid — the code itself is little more than a collection of class definitions, with no entry points that actually call any of the functionality that those code elements provide.
As the previous edition’s code was not linted, there are several places throughout it that will raise linting errors. These were intentionally left in place so that they could be addressed later when it becomes...