(self)
| 152 | with the statement in force.""" |
| 153 | |
| 154 | def __init__(self): |
| 155 | self.flags = PyCF_DONT_IMPLY_DEDENT |
| 156 | |
| 157 | try: |
| 158 | from ast import PyCF_ALLOW_TOP_LEVEL_AWAIT |
| 159 | |
| 160 | self.flags |= PyCF_ALLOW_TOP_LEVEL_AWAIT |
| 161 | except: |
| 162 | pass |
| 163 | |
| 164 | def __call__(self, source, filename, symbol): |
| 165 | codeob = compile(source, filename, symbol, self.flags, 1) |