Skip to content

Commit f49e931

Browse files
committed
更改python3.5.0为python3.5.1
1 parent ce5bd33 commit f49e931

File tree

134 files changed

+189
-29259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+189
-29259
lines changed

docs/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 9233dc48cfee7ffcadc8fd57b87e0522
3+
config: fc9deafe464ee1771927f377cd7283f3
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/html/_sources/appendix.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
在 BSD'ish Unix 系统上,Python 脚本可直接执行,像 shell 脚本一样,只需要把下面内容加入到 ::
2929

30-
#!/usr/bin/env python3.5
30+
#!/usr/bin/env python3.4
3131

3232
(假设 python 解释器在用户的 :envvar:`PATH` 中)脚本的开头,并给予该文件的可执行模式。``#!`` 必须是文件的头两个字符。在一些系统上,第一行必须以 Unix-style 的行结束符(``'\n'``)结束,不能以 Windows 的行结束符(``'\r\n'``)。 注意 ``'#'`` 在 Python 中是用于注释的。
3333

docs/html/_sources/interpreter.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
调用 Python 解释器
1111
========================
1212

13-
Python 解释器通常被安装在目标机器的 :file:`/usr/local/bin/python3.5` 目录下。将 :file:`/usr/local/bin` 目录包含进 Unix shell 的搜索路径里,以确保可以通过输入:
13+
Python 解释器通常被安装在目标机器的 :file:`/usr/local/bin/python3.4` 目录下。将 :file:`/usr/local/bin` 目录包含进 Unix shell 的搜索路径里,以确保可以通过输入:
1414

1515
.. code-block:: text
1616

17-
python3.5
17+
python3.4
1818

1919
命令来启动他。[#]_ 由于 Python 解释器的安装路径是可选的,这也可能是其它路径,你可以联系安装 Python 的用户或系统管理员确认(例如,:file:`/usr/local/python` 就是一个常见的选择)。
2020

21-
在 Windows 机器上,Python 通常安装在 :file:`C:\\Python35` 位置,当然你可以在运行安装向导时修改此值。要想把此目录添加到你的 PATH 环境变量中,你可以在 DOS 窗口中输入以下命令::
21+
在 Windows 机器上,Python 通常安装在 :file:`C:\\Python34` 位置,当然你可以在运行安装向导时修改此值。要想把此目录添加到你的 PATH 环境变量中,你可以在 DOS 窗口中输入以下命令::
2222

23-
set path=%path%;C:\python35
23+
set path=%path%;C:\python34
2424

2525
通常你可以在主窗口输入一个文件结束符(Unix 系统是 :kbd:`Control-D`,Windows 系统是 :kbd:`Control-Z`)让解释器以 0 状态码退出。如果那没有作用,你可以通过输入 ``quit()`` 命令退出解释器。
2626

@@ -51,8 +51,8 @@ sys``,列表的长度大于等于1;没有给定脚本和参数时,它至
5151

5252
从 tty 读取命令时,我们称解释器工作于 *交互模式*。这种模式下它根据主提示符来执行,主提示符通常标识为三个大于号(``>>>``);继续的部分被称为 *从属提示符*,由三个点标识(``...``)。在第一行之前,解释器打印欢迎信息、版本号和授权提示::
5353

54-
$ python3.5
55-
Python 3.5 (default, Mar 16 2014, 09:25:04)
54+
$ python3.4
55+
Python 3.4 (default, Mar 16 2014, 09:25:04)
5656
[GCC 4.8.2] on linux
5757
Type "help", "copyright", "credits" or "license" for more information.
5858
>>>

docs/html/_sources/stdlib.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Python 标准库概览
1414

1515
>>> import os
1616
>>> os.getcwd() # Return the current working directory
17-
'C:\\Python35'
17+
'C:\\Python33'
1818
>>> os.chdir('/server/accesslogs') # Change current working directory
1919
>>> os.system('mkdir today') # Run the command mkdir in the system shell
2020
0

docs/html/_static/css/googleapis.css

Lines changed: 0 additions & 48 deletions
This file was deleted.

docs/html/_static/fonts/googleapis

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)