(pathname, source)
| 691 | # Given a string buffer containing Python source code, compile it |
| 692 | # and return a code object. |
| 693 | def _compile_source(pathname, source): |
| 694 | source = _normalize_line_endings(source) |
| 695 | return compile(source, pathname, 'exec', dont_inherit=True) |
| 696 | |
| 697 | # Convert the date/time values found in the Zip archive to a value |
| 698 | # that's compatible with the time stamp stored in .pyc files. |
no test coverage detected