diff options
| author | Guido van Rossum <guido@python.org> | 2001-09-04 19:14:14 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2001-09-04 19:14:14 (GMT) |
| commit | 54e54c6877329e105406c48490f218faff59db39 (patch) | |
| tree | 6bbdf1f6efaa2253af424f59dc9564a5458d6739 /Lib/inspect.py | |
| parent | b8f22749853cf79bfbe3709309e67d1a448f4cab (diff) | |
| download | cpython-54e54c6877329e105406c48490f218faff59db39.zip cpython-54e54c6877329e105406c48490f218faff59db39.tar.gz cpython-54e54c6877329e105406c48490f218faff59db39.tar.bz2 | |
The first batch of changes recommended by the fixdiv tool. These are
mostly changes of / operators into //. Once or twice I did more or
less than recommended.
Diffstat (limited to 'Lib/inspect.py')
| -rw-r--r-- | Lib/inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 6183b0e..f57ba37 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -590,7 +590,7 @@ def getframeinfo(frame, context=1): filename = getsourcefile(frame) lineno = getlineno(frame) if context > 0: - start = lineno - 1 - context/2 + start = lineno - 1 - context//2 try: lines, lnum = findsource(frame) except IOError: |
