Kaydet (Commit) 8f5dbc83 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Fix typo in example regular expression.

üst 35c87f2b
......@@ -1299,7 +1299,7 @@ successive matches::
def tokenize(s):
tok_spec = [
('NUMBER', r'\d+(.\d+)?'), # Integer or decimal number
('NUMBER', r'\d+(\.\d*)?'), # Integer or decimal number
('ASSIGN', r':='), # Assignment operator
('END', ';'), # Statement terminator
('ID', r'[A-Za-z]+'), # Identifiers
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment