This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年09月25日 14:02 by marco.buttu, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (8) | |||
|---|---|---|---|
| msg171276 - (view) | Author: Marco Buttu (marco.buttu) * | Date: 2012年09月25日 14:02 | |
$ echo "print(__file__)" > foo.py $ python3.3 -O -m foo /home/marco/temp/foo.py $ ls foo.py __pycache__ $ rm foo.py $ mv __pycache__/foo.cpython-33.pyo foo.pyo $ rm __pycache__ -r $ ls foo.pyo # The following works in Python3.2, but not in Python 3.3.0rc3 $ python3.3 -O -m foo /usr/local/bin/python3.3: No module named foo |
|||
| msg171287 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年09月25日 15:23 | |
New changeset 4de5e4ec3cff by Benjamin Peterson in branch 'default': don't depend on __debug__ because it's baked in at freeze time (issue #16046) http://hg.python.org/cpython/rev/4de5e4ec3cff |
|||
| msg171288 - (view) | Author: Benjamin Peterson (benjamin.peterson) * (Python committer) | Date: 2012年09月25日 15:23 | |
This "tested" in the sense if you run test_import with -O, it fails. We ought to have a buildbot running with -O. |
|||
| msg171289 - (view) | Author: Benjamin Peterson (benjamin.peterson) * (Python committer) | Date: 2012年09月25日 15:23 | |
Georg, do you want to take this for 3.3, final? |
|||
| msg171290 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2012年09月25日 15:25 | |
Looks serious enough, yes. |
|||
| msg171291 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2012年09月25日 15:40 | |
Transplanted to ff50579241cd. |
|||
| msg171372 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2012年09月27日 08:48 | |
It would be nice to have a test. |
|||
| msg171553 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2012年09月29日 07:27 | |
New changeset ff50579241cd by Benjamin Peterson in branch 'default': don't depend on __debug__ because it's baked in at freeze time (issue #16046) http://hg.python.org/cpython/rev/ff50579241cd |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:36 | admin | set | github: 60250 |
| 2012年09月29日 07:27:37 | python-dev | set | messages: + msg171553 |
| 2012年09月27日 08:48:46 | vstinner | set | nosy:
+ vstinner messages: + msg171372 |
| 2012年09月25日 15:40:20 | georg.brandl | set | status: open -> closed resolution: fixed messages: + msg171291 |
| 2012年09月25日 15:25:21 | georg.brandl | set | messages: + msg171290 |
| 2012年09月25日 15:23:59 | benjamin.peterson | set | priority: normal -> release blocker nosy: + georg.brandl messages: + msg171289 assignee: georg.brandl |
| 2012年09月25日 15:23:30 | benjamin.peterson | set | nosy:
+ benjamin.peterson messages: + msg171288 |
| 2012年09月25日 15:23:16 | python-dev | set | nosy:
+ python-dev messages: + msg171287 |
| 2012年09月25日 14:08:52 | pitrou | set | keywords:
+ 3.3regression nosy: + brett.cannon, ncoghlan |
| 2012年09月25日 14:04:21 | marco.buttu | set | type: behavior |
| 2012年09月25日 14:02:05 | marco.buttu | create | |