com.googler.python 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,22 +1,16 @@
1
1
  {
2
2
  "name": "com.googler.python",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "bin": {
5
5
  "idle3": "./python3.6.2/bin/idle3",
6
- "idle3.4": "./python3.6.2/bin/idle3.4",
7
6
  "pip": "./python3.6.2/bin/pip3",
8
7
  "pip3": "./python3.6.2/bin/pip3",
9
- "pip3.4": "./python3.6.2/bin/pip3.4",
10
8
  "pydoc": "./python3.6.2/bin/pydoc3",
11
9
  "pydoc3": "./python3.6.2/bin/pydoc3",
12
- "pydoc3.4": "./python3.6.2/bin/pydoc3.4",
13
- "python": "./python3.6.2/bin/python3.4",
10
+ "python": "./python3.6.2/bin/python3",
14
11
  "python3": "./python3.6.2/bin/python3",
15
- "python3.4": "./python3.6.2/bin/python3.4",
16
12
  "pyvenv": "./python3.6.2/bin/pyvenv",
17
- "pyvenv-3.4": "./python3.6.2/bin/pyvenv-3.4",
18
- "easy_install-3.4": "./python3.6.2/bin/easy_install-3.4",
19
- "easy_install": "./python3.6.2/bin/easy_install-3.4"
13
+ "easy_install": "./python3.6.2/bin/easy_install"
20
14
  },
21
15
  "os": [
22
16
  "android"
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
  import sys
3
3
  from lib2to3.main import main
4
4
 
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
  import sys
3
3
  from lib2to3.main import main
4
4
 
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
 
3
3
  # -*- coding: utf-8 -*-
4
4
  import re
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
 
3
3
  from idlelib.PyShell import main
4
4
  if __name__ == '__main__':
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
 
3
3
  # -*- coding: utf-8 -*-
4
4
  import re
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
 
3
3
  import pydoc
4
4
  if __name__ == '__main__':
@@ -1,4 +1,4 @@
1
- #!/system/bin/env python3.4
1
+ #!/system/bin/env python3
2
2
  if __name__ == '__main__':
3
3
  import sys
4
4
  rc = 1
@@ -1,5 +0,0 @@
1
- #!/system/bin/env python3.4
2
-
3
- from idlelib.PyShell import main
4
- if __name__ == '__main__':
5
- main()
@@ -1,11 +0,0 @@
1
- #!/system/bin/env python3.4
2
-
3
- # -*- coding: utf-8 -*-
4
- import re
5
- import sys
6
-
7
- from pip._internal import main
8
-
9
- if __name__ == '__main__':
10
- sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
11
- sys.exit(main())
@@ -1,5 +0,0 @@
1
- #!/system/bin/env python3.4
2
-
3
- import pydoc
4
- if __name__ == '__main__':
5
- pydoc.cli()
@@ -1,11 +0,0 @@
1
- #!/system/bin/env python3.4
2
- if __name__ == '__main__':
3
- import sys
4
- rc = 1
5
- try:
6
- import venv
7
- venv.main()
8
- rc = 0
9
- except Exception as e:
10
- print('Error: %s' % e, file=sys.stderr)
11
- sys.exit(rc)