File: backslash_continuation.py

package info (click to toggle)
python-tokenize-rt 6.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 492; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 121 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations
x = \
    5

# Also with multiple lines of backslashing
x = \
    \
    \
    \
    5