Files
openide/python/testData/folding/futureImport.py
Morgan Bartholomewandintellij-monorepo-bot 5b3cb745e0 [python] PY-79930 don't fold __future__ imports
Merge-request: IJ-MR-171486
Merged-by: Morgan Bartholomew <morgan.bartholomew@jetbrains.com>

GitOrigin-RevId: 968e8d7c03dd7e46ff55316cffd07e7e2a9c7b54
2025-08-18 12:09:41 +00:00

10 lines
180 B
Python

"""This is a module-level docstring."""
from __future__ import annotations
from __future__ import another_one
<fold text='import ...'>import os
import sys</fold>
print(os, sys)