renommages

This commit is contained in:
rep
2017-08-25 17:23:44 +02:00
parent 103687984a
commit 706b20e83b
6 changed files with 17 additions and 439 deletions

6
test/pr3.py Normal file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/python
# coding: utf-8
def pr3nt(salut) :
print salut

BIN
test/pr3.pyc Normal file

Binary file not shown.

11
test/test.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/python
# coding: utf-8
#import pr3
import sys
from pr3 import *
truc = sys.argv[1]
pr3nt(truc)