Closed ktdreyer closed 7 years ago
name_version_re is already supposed to match the beginning of the string, so use re.match().
name_version_re
re.match()
The purpose of this change is to clarify the intention of these property methods and optimize the code.
For the Build class, add unit tests to verify that these properies are correctly set.
Build
name_version_re
is already supposed to match the beginning of the string, so usere.match()
.The purpose of this change is to clarify the intention of these property methods and optimize the code.
For the
Build
class, add unit tests to verify that these properies are correctly set.