(pathname, source, module)
| 743 | # Given a string buffer containing Python source code, compile it |
| 744 | # and return a code object. |
| 745 | def _compile_source(pathname, source, module): |
| 746 | source = _normalize_line_endings(source) |
| 747 | return compile(source, pathname, 'exec', dont_inherit=True, module=module) |
| 748 | |
| 749 | # Convert the date/time values found in the Zip archive to a value |
| 750 | # that's compatible with the time stamp stored in .pyc files. |
no test coverage detected
searching dependent graphs…