Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: third_party/coverage-3.7.1/coverage/tracer.c

Issue 225633007: Upgrade to coverage 3.7.1 and have it auto-build itself on first use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: sigh our imports are a mess Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* C-based Tracer for Coverage. */ 1 /* C-based Tracer for Coverage. */
2 2
3 #include "Python.h" 3 #include "Python.h"
4 #include "compile.h" /* in 2.3, this wasn't part of Python.h */ 4 #include "compile.h" /* in 2.3, this wasn't part of Python.h */
5 #include "eval.h" /* or this. */ 5 #include "eval.h" /* or this. */
6 #include "structmember.h" 6 #include "structmember.h"
7 #include "frameobject.h" 7 #include "frameobject.h"
8 8
9 /* Compile-time debugging helpers */ 9 /* Compile-time debugging helpers */
10 #undef WHAT_LOG /* Define to log the WHAT params in the trace function. */ 10 #undef WHAT_LOG /* Define to log the WHAT params in the trace function. */
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 CTracerType.tp_new = PyType_GenericNew; 721 CTracerType.tp_new = PyType_GenericNew;
722 if (PyType_Ready(&CTracerType) < 0) { 722 if (PyType_Ready(&CTracerType) < 0) {
723 return; 723 return;
724 } 724 }
725 725
726 Py_INCREF(&CTracerType); 726 Py_INCREF(&CTracerType);
727 PyModule_AddObject(mod, "CTracer", (PyObject *)&CTracerType); 727 PyModule_AddObject(mod, "CTracer", (PyObject *)&CTracerType);
728 } 728 }
729 729
730 #endif /* Py3k */ 730 #endif /* Py3k */
OLDNEW
« no previous file with comments | « third_party/coverage-3.7.1/coverage/templite.py ('k') | third_party/coverage-3.7.1/coverage/version.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698