(pathname, source)
| 735 | # Given a string buffer containing Python source code, compile it |
| 736 | # and return a code object. |
| 737 | def _compile_source(pathname, source): |
| 738 | source = _normalize_line_endings(source) |
| 739 | return compile(source, pathname, 'exec', dont_inherit=True) |
| 740 | |
| 741 | # Convert the date/time values found in the Zip archive to a value |
| 742 | # that's compatible with the time stamp stored in .pyc files. |
no test coverage detected