Record Case Detail

Notes

This function is in beta test. Please help improve it in the issues here.

Stderr

$ export LD_LIBRARY_PATH=$PWD:$LD_LIBRARY_PATH
$ ./l6 rand_double.txt inc
Traceback (most recent call last):
  File "l6.py", line 121, in <module>
    exit_code = main(data_type, orig_sort, dest_sort)
  File "l6.py", line 57, in main
    env=my_env,
  File "/usr/lib/python3.6/subprocess.py", line 423, in run
    with Popen(*popenargs, **kwargs) as process:
  File "/usr/lib/python3.6/subprocess.py", line 729, in __init__
    restore_signals, start_new_session)
  File "/usr/lib/python3.6/subprocess.py", line 1364, in _execute_child
    raise child_exception_type(errno_num, err_msg, err_filename)
PermissionError: [Errno 13] Permission denied: './l6'

Hints

Your answer may be identical to the JOJ answer in the first several lines.

However, the main problem you meet now is Runtime Error. And the exit code of your program is 1, which should be 0.

Please double check your code to solve this problem and try again.

Your Answer


        

JOJ Answer

Correct!