Message110990
| Author |
belopolsky |
| Recipients |
belopolsky |
| Date |
2010年07月21日.01:54:22 |
| SpamBayes Score |
0.003728576 |
| Marked as misclassified |
No |
| Message-id |
<1279677265.36.0.322549269298.issue9317@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I am running the following command
$ python -m trace -C pickle-trace.d -c -m Lib/test/test_pickle.py
and getting attached file, pickle.cover, in the pickle-trace.d directory. This does not look right. From the very beginning, module level statements are marked as not executed:
>>>>>> __version__ = "$Revision: 82937 $" # Code version
>>>>>> from types import FunctionType, BuiltinFunctionType
>>>>>> from copyreg import dispatch_table
>>>>>> from copyreg import _extension_registry, _inverted_registry, _extension_cache
>>>>>> import marshal
>>>>>> import sys
The method I was interested in, _instantiate, shows as if it was never executed even though if I add a failing assert, I do see test failure.
I suspect that this may have something to do with the import trickery that test_pickle does to test with and without _pickle. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年07月21日 01:54:25 | belopolsky | set | recipients:
+ belopolsky |
| 2010年07月21日 01:54:25 | belopolsky | set | messageid: <1279677265.36.0.322549269298.issue9317@psf.upfronthosting.co.za> |
| 2010年07月21日 01:54:23 | belopolsky | link | issue9317 messages |
| 2010年07月21日 01:54:22 | belopolsky | create |
|