diff options
author | Benjamin Peterson <benjamin@python.org> | 2017-09-04 23:36:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 23:36:05 (GMT) |
commit | 069306312addf87252e2dbf250fc7632fc8b7da3 (patch) | |
tree | 92917032b65208b37ce8aeca6011d3eea30ce205 /Tools/scripts | |
parent | e1b0287c0440399e8cc855897113614fa5f6bc96 (diff) | |
download | cpython-069306312addf87252e2dbf250fc7632fc8b7da3.zip cpython-069306312addf87252e2dbf250fc7632fc8b7da3.tar.gz cpython-069306312addf87252e2dbf250fc7632fc8b7da3.tar.bz2 |
remove IRIX support (closes bpo-31341) (#3310)
See PEP 11.
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/objgraph.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/scripts/objgraph.py b/Tools/scripts/objgraph.py index 1e1fce0..3bb1712 100755 --- a/Tools/scripts/objgraph.py +++ b/Tools/scripts/objgraph.py @@ -2,8 +2,8 @@ # objgraph # -# Read "nm -o" input (on IRIX: "nm -Bo") of a set of libraries or modules -# and print various interesting listings, such as: +# Read "nm -o" input of a set of libraries or modules and print various +# interesting listings, such as: # # - which names are used but not defined in the set (and used where), # - which names are defined in the set (and where), @@ -15,7 +15,7 @@ # -d: print callees per objectfile # -u: print usage of undefined symbols # If none of -cdu is specified, all are assumed. -# Use "nm -o" to generate the input (on IRIX: "nm -Bo"), +# Use "nm -o" to generate the input # e.g.: nm -o /lib/libc.a | objgraph @@ -161,7 +161,7 @@ def main(): print('-d: print callees per objectfile') print('-u: print usage of undefined symbols') print('If none of -cdu is specified, all are assumed.') - print('Use "nm -o" to generate the input (on IRIX: "nm -Bo"),') + print('Use "nm -o" to generate the input') print('e.g.: nm -o /lib/libc.a | objgraph') return 1 optu = optc = optd = 0 |