Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3bc4747

Browse files
committed
Remove debugging code.
svn path=/trunk/matplotlib/; revision=4980
1 parent e5b6c95 commit 3bc4747

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

lib/matplotlib/lines.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,6 @@ def segment_hits(cx,cy,x,y,radius):
7575
"""Determine if any line segments are within radius of a point. Returns
7676
the list of line segments that are within that radius.
7777
"""
78-
import pdb
79-
pdb.set_trace()
80-
8178
# Process single points specially
8279
if len(x) < 2:
8380
res, = npy.nonzero( (cx - x)**2 + (cy - y)**2 <= radius**2 )

0 commit comments

Comments
 (0)