As well as I know, PYTHONSTARTUP is for commands to be executed when the interpreter starts up 1[1].
Command rlcompleter is for autocompletion inside your script, if it is using readline library. Something like this:
$ ./myscript.py
My Script version 3.1415.
Enter your commands:
myscript> B<TAB>egin
myscript> E<TAB>nd
In your example you want to complete on the shell command linecompletion . This autocompletion is a shell feature (either bash or zsh, whatever you use). See, for example, an introduction to bash autocompletion (also part 2). For zsh see, for example this guide.
