Changes between Version 44 and Version 45 of DeveloperGuidelines/Py_2_3
- Timestamp:
- 07/04/19 19:33:03 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Py_2_3
v44 v45 89 89 # Works in Py2, but not in Py3: 90 90 raise SyntaxError, "Error Message" 91 91 92 # Works in all Python versions, hence our Standard: 92 93 raise SyntaxError("Error Message")