summaryrefslogtreecommitdiff
path: root/coverage/ctracer/tracer.c
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-06-14 08:31:56 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-06-14 08:31:56 -0400
commit03b7b258014e300f1974b9f5832ccd74e692cc29 (patch)
treefb33d722e3314f74b1c5e65f2bebbfae437db72d /coverage/ctracer/tracer.c
parentd86f865ba3dbc1369f7b08144a8876375edb9eae (diff)
downloadpython-coveragepy-git-03b7b258014e300f1974b9f5832ccd74e692cc29.tar.gz
Update URLs so link-checker doesn't spew red.
Diffstat (limited to 'coverage/ctracer/tracer.c')
-rw-r--r--coverage/ctracer/tracer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coverage/ctracer/tracer.c b/coverage/ctracer/tracer.c
index 095df11a..625a45a6 100644
--- a/coverage/ctracer/tracer.c
+++ b/coverage/ctracer/tracer.c
@@ -812,7 +812,7 @@ CTracer_handle_exception(CTracer *self, PyFrameObject *frame)
the bug will be fixed everywhere coverage.py is supported, and we can
remove this missing-return detection.
- More about this fix: http://nedbatchelder.com/blog/200907/a_nasty_little_bug.html
+ More about this fix: https://nedbatchelder.com/blog/200907/a_nasty_little_bug.html
*/
STATS( self->stats.exceptions++; )
self->last_exc_back = frame->f_back;
@@ -989,7 +989,7 @@ CTracer_call(CTracer *self, PyObject *args, PyObject *kwds)
the new trace function before it has a chance to get called. To
understand why, there are three internal values to track: frame.f_trace,
c_tracefunc, and c_traceobj. They are explained here:
- http://nedbatchelder.com/text/trace-function.html
+ https://nedbatchelder.com/text/trace-function.html
Without the conditional on PyTrace_CALL, this is what happens: