summarylogtreecommitdiffstats
path: root/line_profiler.patch
diff options
context:
space:
mode:
Diffstat (limited to 'line_profiler.patch')
-rw-r--r--line_profiler.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/line_profiler.patch b/line_profiler.patch
deleted file mode 100644
index 803c7579bdd7..000000000000
--- a/line_profiler.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ruN line_profiler-2.1.2.orig/kernprof.py line_profiler-2.1.2/kernprof.py
---- line_profiler-2.1.2.orig/kernprof.py 2018-08-30 14:14:52.722665861 +0200
-+++ line_profiler-2.1.2/kernprof.py 2018-08-30 14:18:42.516791010 +0200
-@@ -102,6 +102,8 @@
- self.enable_by_count()
- try:
- item = g.send(input)
-+ except StopIteration:
-+ return
- finally:
- self.disable_by_count()
- input = (yield item)
-diff -ruN line_profiler-2.1.2.orig/line_profiler.py line_profiler-2.1.2/line_profiler.py
---- line_profiler-2.1.2.orig/line_profiler.py 2018-08-30 14:14:52.722665861 +0200
-+++ line_profiler-2.1.2/line_profiler.py 2018-08-30 14:19:11.210222041 +0200
-@@ -100,6 +100,8 @@
- self.enable_by_count()
- try:
- item = g.send(input)
-+ except StopIteration:
-+ return
- finally:
- self.disable_by_count()
- input = (yield item)