diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2018-10-30 20:17:36 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2018-10-30 20:21:07 +0100 |
commit | da657c8e326a419cde8ae6ea91be9661b9622504 (patch) | |
tree | e08e8eb50715df9f2a3cbbad008ad8c91bd17a95 /Cython/Debugger/libpython.py | |
parent | 5fdbfe49d56d756169e75c80c126eee5fc8fad52 (diff) | |
download | cython-gh2692_remove_py26_support.tar.gz |
Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_support
Closes #2692.
Diffstat (limited to 'Cython/Debugger/libpython.py')
-rw-r--r-- | Cython/Debugger/libpython.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Cython/Debugger/libpython.py b/Cython/Debugger/libpython.py index fea626dd7..66d121040 100644 --- a/Cython/Debugger/libpython.py +++ b/Cython/Debugger/libpython.py @@ -48,7 +48,7 @@ The module also extends gdb with some python-specific commands. ''' # NOTE: some gdbs are linked with Python 3, so this file should be dual-syntax -# compatible (2.6+ and 3.0+). See #19308. +# compatible (2.7+ and 3.3+). See #19308. from __future__ import print_function import gdb @@ -1435,8 +1435,8 @@ The following code should ensure that the prettyprinter is registered if the code is autoloaded by gdb when visiting libpython.so, provided that this python file is installed to the same path as the library (or its .debug file) plus a "-gdb.py" suffix, e.g: - /usr/lib/libpython2.6.so.1.0-gdb.py - /usr/lib/debug/usr/lib/libpython2.6.so.1.0.debug-gdb.py + /usr/lib/libpython3.7.so.1.0-gdb.py + /usr/lib/debug/usr/lib/libpython3.7.so.1.0.debug-gdb.py """ def register (obj): if obj is None: |