Skip to content

Commit 2c63efa

Browse files
Python: Fixed numbers ending with a dot (#3106)
1 parent 00f77a2 commit 2c63efa

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

components/prism-python.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Prism.languages.python = {
5454
'keyword': /\b(?:and|as|assert|async|await|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,
5555
'builtin': /\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,
5656
'boolean': /\b(?:False|None|True)\b/,
57-
'number': /\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?\b/i,
57+
'number': /\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,
5858
'operator': /[-+%=]=?|!=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,
5959
'punctuation': /[{}[\];(),.:]/
6060
};

components/prism-python.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/python/number_feature.test

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
0xBadFace
44
42
55
3.14159
6+
10.
67
2.1E10
78
0.3e-7
89
4.8e+1
@@ -24,6 +25,7 @@
2425
["number", "0xBadFace"],
2526
["number", "42"],
2627
["number", "3.14159"],
28+
["number", "10."],
2729
["number", "2.1E10"],
2830
["number", "0.3e-7"],
2931
["number", "4.8e+1"],
@@ -36,9 +38,8 @@
3638
["number", "0xBad_Face"],
3739
["number", "4_200"],
3840
["number", "4_200j"]
39-
4041
]
4142

4243
----------------------------------------------------
4344

44-
Checks for hexadecimal, octal, binary and decimal numbers.
45+
Checks for hexadecimal, octal, binary and decimal numbers.

0 commit comments

Comments
 (0)