From 83572a19ee2ac50a8954f7b5731d082d951a126a Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Mon, 31 Dec 2012 01:12:03 +1000 Subject: [PATCH] PEP 432 syntax fix --- pep-0432.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pep-0432.txt b/pep-0432.txt index 82952e615..dcb2dc5f7 100644 --- a/pep-0432.txt +++ b/pep-0432.txt @@ -730,10 +730,12 @@ However, some metadata related to the ``__main__`` module may still be incomplete: * ``sys.argv[0]`` may not yet have its final value + * it will be ``-m`` when executing a module or package with CPython * it will be the same as ``sys.path[0]`` rather than the location of the ``__main__`` module when executing a valid ``sys.path`` entry (typically a zipfile or directory) + * the metadata in the ``__main__`` module will still indicate it is a builtin module