Skip to content

Commit 35767bf

Browse files
committed
pypy3: Alias to python
1 parent 9a03b80 commit 35767bf

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

completions/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ pydoc3
138138
python2
139139
python3
140140
pypy
141+
pypy3
141142
pyvenv-3.[45]
142143
qemu-kvm
143144
qemu-system-i386

completions/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,6 +566,7 @@ CLEANFILES = \
566566
pxz \
567567
pydoc3 \
568568
pypy \
569+
pypy3 \
569570
python2 \
570571
python3 \
571572
pyvenv-3.4 \
@@ -867,7 +868,7 @@ symlinks: $(targetdir) $(DATA)
867868
rm -f $(targetdir)/$$file && \
868869
$(LN_S) pydoc $(targetdir)/$$file ; \
869870
done
870-
for file in pypy python2 python3 ; do \
871+
for file in pypy pypy3 python2 python3 ; do \
871872
rm -f $(targetdir)/$$file && \
872873
$(LN_S) python $(targetdir)/$$file ; \
873874
done

completions/python

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ _python()
5454

5555
return 0
5656
} &&
57-
complete -F _python python python2 python3 pypy
57+
complete -F _python python python2 python3 pypy pypy3
5858

5959
# ex: ts=4 sw=4 et filetype=sh

0 commit comments

Comments
 (0)