Ok, thanks.
Now I see it and I can execute my code using python3. 
But now, it’s the function input that doesn’t seems to be supported … 
Here is my code:
#!/usr/bin/python3
import sys
print (sys.version)
print("Please type something:" , end=" ")
userInput = input()
print("User Input is: ", userInput)
Here is the result in sublime (build 3059):
3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2]
Please type something: Traceback (most recent call last):
File "/home/user/Python/test.python", line 5, in <module>
userInput = input()
EOFError: EOF when reading a line
[Finished in 0.2s with exit code 1]
[cmd: ['/usr/bin/python3', '-u', '/home/user/Python/test.python']]
[dir: /home/user/Python/]
[path: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games]
and here is the result in the shell:
user@Desktop:~/Python/$ ./test.python
3.4.0 (default, Apr 11 2014, 13:05:11)
[GCC 4.8.2]
Please type something: test
User Input is: test
user@Desktop:~/Python/$
user@Desktop:~/Python/$
user@Desktop:~/Python/$ which python3
/usr/bin/python3
user@Desktop:~/Python/$
How come can I get 2 diffrent result with the same interpreter?
Does sublime is modifying the code before passing it to the interpreter?
Although the problem describe in the first post was not a bug.
Here, I’m not sur that this one isn’t one !!! 