Changes between Version 2 and Version 3 of HowToSubmitAPatch
- Timestamp:
- 07/08/08 02:13:39 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToSubmitAPatch
v2 v3 37 37 ensure 38 38 (result) in [8, 16, 32, 64] 39 40 # No descriptive comments above a declaration. Use a doc string instead. Use sentences. 41 # good: 42 def _matchBetween(input as String, start as char, stopch as char) as String? 43 """ 44 Matches between a range of character. 45 """ 46 # bad: 47 # helper for matching between a range of chars 48 def _matchBetween(input as String, start as char, stopch as char) as String? 39 49 }}} 40 50