Files
python-uncompyle6/test/simple_source/bug27+/01_module_doc.py
2024-07-10 13:31:39 -04:00

10 lines
372 B
Python

# From 2.7.17 test_bdb.py
# The problem was detecting a docstring at the beginning of the module
# It must be detected and change'd or else the "from __future__" below
# is invalid.
# Note that this has to be compiled with optimization < 2 or else optimization
# will remove the docstring
"""Rational, infinite-precision, real numbers."""
from __future__ import division