You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Start to track line breaks on lists
This commit is contained in:
14
test/simple_source/stmts/08_source_linebreaks.py
Normal file
14
test/simple_source/stmts/08_source_linebreaks.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# Show off indentation based on source code indentation
|
||||
# New lines are influenced by source-code new lines
|
||||
opts = {'highlight':
|
||||
True,
|
||||
'start_line':
|
||||
-1,
|
||||
'end_line':
|
||||
None, 'a': 1, 'b': 2,
|
||||
}
|
||||
x = 5
|
||||
bar = (1,2,3,4,x,6,7,8,9,
|
||||
10,11,12,13,14,15,16,
|
||||
17,18)
|
||||
print(opts, bar)
|
Reference in New Issue
Block a user