FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Python/Python-tokenize.c at 3.13 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.3k
Star
74.9k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Python
/
Python-tokenize.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
443 lines (393 loc) · 12.5 KB
Breadcrumbs
cpython
/
Python
/
Python-tokenize.c
Copy path
File metadata and controls
443 lines (393 loc) · 12.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#include
"Python.h"
#include
"errcode.h"
#include
"internal/pycore_critical_section.h"
// Py_BEGIN_CRITICAL_SECTION
#include
"../Parser/lexer/state.h"
#include
"../Parser/lexer/lexer.h"
#include
"../Parser/tokenizer/tokenizer.h"
#include
"../Parser/pegen.h"
// _PyPegen_byte_offset_to_character_offset()
static
struct
PyModuleDef
_tokenizemodule
;
typedef
struct
{
PyTypeObject
*
TokenizerIter
;
}
tokenize_state
;
static
tokenize_state
*
get_tokenize_state
(
PyObject
*
module
) {
return
(
tokenize_state
*
)
PyModule_GetState
(
module
);
}
#define
_tokenize_get_state_by_type
(
type
) \
get_tokenize_state(PyType_GetModuleByDef(type, &_tokenizemodule))
#include
"pycore_runtime.h"
#include
"clinic/Python-tokenize.c.h"
/*[clinic input]
module _tokenizer
class _tokenizer.tokenizeriter "tokenizeriterobject *" "_tokenize_get_state_by_type(type)->TokenizerIter"
[clinic start generated code]*/
/*[clinic end generated code: output=da39a3ee5e6b4b0d input=96d98ee2fef7a8bc]*/
typedef
struct
{
PyObject_HEAD
struct
tok_state
*
tok
;
int
done
;
/* Needed to cache line for performance */
PyObject
*
last_line
;
Py_ssize_t
last_lineno
;
Py_ssize_t
last_end_lineno
;
Py_ssize_t
byte_col_offset_diff
;
}
tokenizeriterobject
;
/*[clinic input]
@classmethod
_tokenizer.tokenizeriter.__new__ as tokenizeriter_new
readline: object
/
*
extra_tokens: bool
encoding: str(c_default="NULL") = 'utf-8'
[clinic start generated code]*/
static
PyObject
*
tokenizeriter_new_impl
(
PyTypeObject
*
type
,
PyObject
*
readline
,
int
extra_tokens
,
const
char
*
encoding
)
/*[clinic end generated code: output=7501a1211683ce16 input=f7dddf8a613ae8bd]*/
{
tokenizeriterobject
*
self
=
(
tokenizeriterobject
*
)
type
->
tp_alloc
(
type
,
0
);
if
(
self
==
NULL
) {
return
NULL
;
}
PyObject
*
filename
=
PyUnicode_FromString
(
"<string>"
);
if
(
filename
==
NULL
) {
return
NULL
;
}
self
->
tok
=
_PyTokenizer_FromReadline
(
readline
,
encoding
,
1
,
1
);
if
(
self
->
tok
==
NULL
) {
Py_DECREF
(
filename
);
return
NULL
;
}
self
->
tok
->
filename
=
filename
;
if
(
extra_tokens
) {
self
->
tok
->
tok_extra_tokens
=
1
;
}
self
->
done
=
0
;
self
->
last_line
=
NULL
;
self
->
byte_col_offset_diff
=
0
;
self
->
last_lineno
=
0
;
self
->
last_end_lineno
=
0
;
return
(
PyObject
*
)
self
;
}
static
int
_tokenizer_error
(
tokenizeriterobject
*
it
)
{
_Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED
(
it
);
if
(
PyErr_Occurred
()) {
return
-1
;
}
const
char
*
msg
=
NULL
;
PyObject
*
errtype
=
PyExc_SyntaxError
;
struct
tok_state
*
tok
=
it
->
tok
;
switch
(
tok
->
done
) {
case
E_TOKEN
:
msg
=
"invalid token"
;
break
;
case
E_EOF
:
PyErr_SetString
(
PyExc_SyntaxError
,
"unexpected EOF in multi-line statement"
);
PyErr_SyntaxLocationObject
(
tok
->
filename
,
tok
->
lineno
,
tok
->
inp
-
tok
->
buf
<
0
?
0
: (
int
)(
tok
->
inp
-
tok
->
buf
));
return
-1
;
case
E_DEDENT
:
msg
=
"unindent does not match any outer indentation level"
;
errtype
=
PyExc_IndentationError
;
break
;
case
E_INTR
:
if
(!
PyErr_Occurred
()) {
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
}
return
-1
;
case
E_NOMEM
:
PyErr_NoMemory
();
return
-1
;
case
E_TABSPACE
:
errtype
=
PyExc_TabError
;
msg
=
"inconsistent use of tabs and spaces in indentation"
;
break
;
case
E_TOODEEP
:
errtype
=
PyExc_IndentationError
;
msg
=
"too many levels of indentation"
;
break
;
case
E_LINECONT
: {
msg
=
"unexpected character after line continuation character"
;
break
;
}
default
:
msg
=
"unknown tokenization error"
;
}
PyObject
*
errstr
=
NULL
;
PyObject
*
error_line
=
NULL
;
PyObject
*
tmp
=
NULL
;
PyObject
*
value
=
NULL
;
int
result
=
0
;
Py_ssize_t
size
=
tok
->
inp
-
tok
->
buf
;
assert
(
tok
->
buf
[
size
-
1
]
==
'\n'
);
size
-=
1
;
// Remove the newline character from the end of the line
error_line
=
PyUnicode_DecodeUTF8
(
tok
->
buf
,
size
,
"replace"
);
if
(!
error_line
) {
result
=
-1
;
goto
exit
;
}
Py_ssize_t
offset
=
_PyPegen_byte_offset_to_character_offset
(
error_line
,
tok
->
inp
-
tok
->
buf
);
if
(
offset
==
-1
) {
result
=
-1
;
goto
exit
;
}
tmp
=
Py_BuildValue
(
"(OnnOOO)"
,
tok
->
filename
,
tok
->
lineno
,
offset
,
error_line
,
Py_None
,
Py_None
);
if
(!
tmp
) {
result
=
-1
;
goto
exit
;
}
errstr
=
PyUnicode_FromString
(
msg
);
if
(!
errstr
) {
result
=
-1
;
goto
exit
;
}
value
=
PyTuple_Pack
(
2
,
errstr
,
tmp
);
if
(!
value
) {
result
=
-1
;
goto
exit
;
}
PyErr_SetObject
(
errtype
,
value
);
exit
:
Py_XDECREF
(
errstr
);
Py_XDECREF
(
error_line
);
Py_XDECREF
(
tmp
);
Py_XDECREF
(
value
);
return
result
;
}
static
PyObject
*
_get_current_line
(
tokenizeriterobject
*
it
,
const
char
*
line_start
,
Py_ssize_t
size
,
int
*
line_changed
)
{
_Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED
(
it
);
PyObject
*
line
;
if
(
it
->
tok
->
lineno
!=
it
->
last_lineno
) {
// Line has changed since last token, so we fetch the new line and cache it
// in the iter object.
Py_XDECREF
(
it
->
last_line
);
line
=
PyUnicode_DecodeUTF8
(
line_start
,
size
,
"replace"
);
it
->
last_line
=
line
;
it
->
byte_col_offset_diff
=
0
;
}
else
{
line
=
it
->
last_line
;
*
line_changed
=
0
;
}
return
line
;
}
static
void
_get_col_offsets
(
tokenizeriterobject
*
it
,
struct
token
token
,
const
char
*
line_start
,
PyObject
*
line
,
int
line_changed
,
Py_ssize_t
lineno
,
Py_ssize_t
end_lineno
,
Py_ssize_t
*
col_offset
,
Py_ssize_t
*
end_col_offset
)
{
_Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED
(
it
);
Py_ssize_t
byte_offset
=
-1
;
if
(
token
.
start
!=
NULL
&&
token
.
start
>=
line_start
) {
byte_offset
=
token
.
start
-
line_start
;
if
(
line_changed
) {
*
col_offset
=
_PyPegen_byte_offset_to_character_offset_line
(
line
,
0
,
byte_offset
);
it
->
byte_col_offset_diff
=
byte_offset
-
*
col_offset
;
}
else
{
*
col_offset
=
byte_offset
-
it
->
byte_col_offset_diff
;
}
}
if
(
token
.
end
!=
NULL
&&
token
.
end
>=
it
->
tok
->
line_start
) {
Py_ssize_t
end_byte_offset
=
token
.
end
-
it
->
tok
->
line_start
;
if
(
lineno
==
end_lineno
) {
// If the whole token is at the same line, we can just use the token.start
// buffer for figuring out the new column offset, since using line is not
// performant for very long lines.
Py_ssize_t
token_col_offset
=
_PyPegen_byte_offset_to_character_offset_line
(
line
,
byte_offset
,
end_byte_offset
);
*
end_col_offset
=
*
col_offset
+
token_col_offset
;
it
->
byte_col_offset_diff
+=
token
.
end
-
token
.
start
-
token_col_offset
;
}
else
{
*
end_col_offset
=
_PyPegen_byte_offset_to_character_offset_raw
(
it
->
tok
->
line_start
,
end_byte_offset
);
it
->
byte_col_offset_diff
+=
end_byte_offset
-
*
end_col_offset
;
}
}
it
->
last_lineno
=
lineno
;
it
->
last_end_lineno
=
end_lineno
;
}
static
PyObject
*
tokenizeriter_next
(
tokenizeriterobject
*
it
)
{
PyObject
*
result
=
NULL
;
Py_BEGIN_CRITICAL_SECTION
(
it
);
struct
token
token
;
_PyToken_Init
(
&
token
);
int
type
=
_PyTokenizer_Get
(
it
->
tok
,
&
token
);
if
(
type
==
ERRORTOKEN
) {
if
(!
PyErr_Occurred
()) {
_tokenizer_error
(
it
);
assert
(
PyErr_Occurred
());
}
goto
exit
;
}
if
(
it
->
done
||
type
==
ERRORTOKEN
) {
PyErr_SetString
(
PyExc_StopIteration
,
"EOF"
);
it
->
done
=
1
;
goto
exit
;
}
PyObject
*
str
=
NULL
;
if
(
token
.
start
==
NULL
||
token
.
end
==
NULL
) {
str
=
PyUnicode_FromString
(
""
);
}
else
{
str
=
PyUnicode_FromStringAndSize
(
token
.
start
,
token
.
end
-
token
.
start
);
}
if
(
str
==
NULL
) {
goto
exit
;
}
int
is_trailing_token
=
0
;
if
(
type
==
ENDMARKER
||
(
type
==
DEDENT
&&
it
->
tok
->
done
==
E_EOF
)) {
is_trailing_token
=
1
;
}
const
char
*
line_start
=
ISSTRINGLIT
(
type
) ?
it
->
tok
->
multi_line_start
:
it
->
tok
->
line_start
;
PyObject
*
line
=
NULL
;
int
line_changed
=
1
;
if
(
it
->
tok
->
tok_extra_tokens
&&
is_trailing_token
) {
line
=
PyUnicode_FromString
(
""
);
}
else
{
Py_ssize_t
size
=
it
->
tok
->
inp
-
line_start
;
if
(
size
>=
1
&&
it
->
tok
->
implicit_newline
) {
size
-=
1
;
}
line
=
_get_current_line
(
it
,
line_start
,
size
,
&
line_changed
);
}
if
(
line
==
NULL
) {
Py_DECREF
(
str
);
goto
exit
;
}
Py_ssize_t
lineno
=
ISSTRINGLIT
(
type
) ?
it
->
tok
->
first_lineno
:
it
->
tok
->
lineno
;
Py_ssize_t
end_lineno
=
it
->
tok
->
lineno
;
Py_ssize_t
col_offset
=
-1
;
Py_ssize_t
end_col_offset
=
-1
;
_get_col_offsets
(
it
,
token
,
line_start
,
line
,
line_changed
,
lineno
,
end_lineno
,
&
col_offset
,
&
end_col_offset
);
if
(
it
->
tok
->
tok_extra_tokens
) {
if
(
is_trailing_token
) {
lineno
=
end_lineno
=
lineno
+
1
;
col_offset
=
end_col_offset
=
0
;
}
// Necessary adjustments to match the original Python tokenize
// implementation
if
(
type
>
DEDENT
&&
type
<
OP
) {
type
=
OP
;
}
else
if
(
type
==
NEWLINE
) {
Py_DECREF
(
str
);
if
(!
it
->
tok
->
implicit_newline
) {
if
(
it
->
tok
->
start
[
0
]
==
'\r'
) {
str
=
PyUnicode_FromString
(
"\r\n"
);
}
else
{
str
=
PyUnicode_FromString
(
"\n"
);
}
}
end_col_offset
++
;
}
else
if
(
type
==
NL
) {
if
(
it
->
tok
->
implicit_newline
) {
Py_DECREF
(
str
);
str
=
PyUnicode_FromString
(
""
);
}
}
if
(
str
==
NULL
) {
Py_DECREF
(
line
);
goto
exit
;
}
}
result
=
Py_BuildValue
(
"(iN(nn)(nn)O)"
,
type
,
str
,
lineno
,
col_offset
,
end_lineno
,
end_col_offset
,
line
);
exit
:
_PyToken_Free
(
&
token
);
if
(
type
==
ENDMARKER
) {
it
->
done
=
1
;
}
Py_END_CRITICAL_SECTION
();
return
result
;
}
static
void
tokenizeriter_dealloc
(
tokenizeriterobject
*
it
)
{
PyTypeObject
*
tp
=
Py_TYPE
(
it
);
Py_XDECREF
(
it
->
last_line
);
_PyTokenizer_Free
(
it
->
tok
);
tp
->
tp_free
(
it
);
Py_DECREF
(
tp
);
}
static
PyType_Slot
tokenizeriter_slots
[]
=
{
{
Py_tp_new
,
tokenizeriter_new
},
{
Py_tp_dealloc
,
tokenizeriter_dealloc
},
{
Py_tp_getattro
,
PyObject_GenericGetAttr
},
{
Py_tp_iter
,
PyObject_SelfIter
},
{
Py_tp_iternext
,
tokenizeriter_next
},
{
0
,
NULL
},
};
static
PyType_Spec
tokenizeriter_spec
=
{
.
name
=
"_tokenize.TokenizerIter"
,
.
basicsize
=
sizeof
(
tokenizeriterobject
),
.
flags
=
(
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_IMMUTABLETYPE
),
.
slots
=
tokenizeriter_slots
,
};
static
int
tokenizemodule_exec
(
PyObject
*
m
)
{
tokenize_state
*
state
=
get_tokenize_state
(
m
);
if
(
state
==
NULL
) {
return
-1
;
}
state
->
TokenizerIter
=
(
PyTypeObject
*
)
PyType_FromModuleAndSpec
(
m
,
&
tokenizeriter_spec
,
NULL
);
if
(
state
->
TokenizerIter
==
NULL
) {
return
-1
;
}
if
(
PyModule_AddType
(
m
,
state
->
TokenizerIter
)
<
0
) {
return
-1
;
}
return
0
;
}
static
PyMethodDef
tokenize_methods
[]
=
{
{
NULL
,
NULL
,
0
,
NULL
}
/* Sentinel */
};
static
PyModuleDef_Slot
tokenizemodule_slots
[]
=
{
{
Py_mod_exec
,
tokenizemodule_exec
},
{
Py_mod_multiple_interpreters
,
Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
},
{
Py_mod_gil
,
Py_MOD_GIL_NOT_USED
},
{
0
,
NULL
}
};
static
int
tokenizemodule_traverse
(
PyObject
*
m
,
visitproc
visit
,
void
*
arg
)
{
tokenize_state
*
state
=
get_tokenize_state
(
m
);
Py_VISIT
(
state
->
TokenizerIter
);
return
0
;
}
static
int
tokenizemodule_clear
(
PyObject
*
m
)
{
tokenize_state
*
state
=
get_tokenize_state
(
m
);
Py_CLEAR
(
state
->
TokenizerIter
);
return
0
;
}
static
void
tokenizemodule_free
(
void
*
m
)
{
tokenizemodule_clear
((
PyObject
*
)
m
);
}
static
struct
PyModuleDef
_tokenizemodule
=
{
PyModuleDef_HEAD_INIT
,
.
m_name
=
"_tokenize"
,
.
m_size
=
sizeof
(
tokenize_state
),
.
m_slots
=
tokenizemodule_slots
,
.
m_methods
=
tokenize_methods
,
.
m_traverse
=
tokenizemodule_traverse
,
.
m_clear
=
tokenizemodule_clear
,
.
m_free
=
tokenizemodule_free
,
};
PyMODINIT_FUNC
PyInit__tokenize
(
void
)
{
return
PyModuleDef_Init
(
&
_tokenizemodule
);
}
Back
|
FazBrowse Home
|
New Git URL