Issue #6635: Fix profiler printing usage message.
This commit is contained in:
parent
1f4fc097f6
commit
924eab64a3
|
@ -605,9 +605,9 @@ def main():
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
sys.argv[:] = args
|
|
||||||
|
|
||||||
if (len(sys.argv) > 0):
|
if (len(args) > 0):
|
||||||
|
sys.argv[:] = args
|
||||||
sys.path.insert(0, os.path.dirname(sys.argv[0]))
|
sys.path.insert(0, os.path.dirname(sys.argv[0]))
|
||||||
run('execfile(%r)' % (sys.argv[0],), options.outfile, options.sort)
|
run('execfile(%r)' % (sys.argv[0],), options.outfile, options.sort)
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -366,6 +366,8 @@ Core and Builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Issue #6635: Fix profiler printing usage message.
|
||||||
|
|
||||||
- Issue #6856: Add a filter keyword argument to TarFile.add().
|
- Issue #6856: Add a filter keyword argument to TarFile.add().
|
||||||
|
|
||||||
- Issue #6163: Fixed HP-UX runtime library dir options in
|
- Issue #6163: Fixed HP-UX runtime library dir options in
|
||||||
|
|
Loading…
Reference in New Issue