Commit Graph

721 Commits

Author SHA1 Message Date
XiongNeng
5ff1c2ddc2 Merge pull request #344 from zlu27/developer
Update Chapter 01
2022-02-01 12:10:00 +08:00
XiongNeng
f4498a884a Merge pull request #340 from Alexcn/patch-2
Update p25_creating_cached_instances.rst
2022-02-01 12:09:49 +08:00
XiongNeng
e7fd68b602 Merge pull request #336 from xiongnemo/patch-1
Update p02_creating_tcp_server.rst
2022-02-01 12:09:08 +08:00
XiongNeng
b79ca676e3 Merge pull request #333 from hieast/patch-2
Update p12_patching_modules_on_import.rst
2022-02-01 12:08:38 +08:00
XiongNeng
05b0c740c8 Merge pull request #332 from hieast/patch-1
Update p21_avoid_repetitive_property_methods.rst
2022-02-01 12:08:18 +08:00
zlu27
779ae8a90d Update c03 p14 2021-02-20 02:07:16 -06:00
zlu27
db9cee3125 文本润色 2021-02-19 22:43:15 -06:00
zlu27
8a316e4fdd Chapter 1 2021-02-17 23:51:35 -06:00
zlu27
461583634b 文本润色 2021-02-17 00:15:03 -06:00
zlu27
f875801c8f 文本润色 2021-02-17 00:14:44 -06:00
Alex
083da2c930 Update p25_creating_cached_instances.rst
修改错别字
2020-12-23 16:03:32 +08:00
Nemo Xiong
8aeda1b9d9 Update p02_creating_tcp_server.rst
文本:奔溃 -> 崩溃
2020-10-28 18:50:13 +08:00
Hieast
e764ca76da Update p12_patching_modules_on_import.rst
错别字纠正
2020-09-01 22:54:59 +08:00
Hieast
4280356362 Update p21_avoid_repetitive_property_methods.rst
fix misspell
2020-08-31 21:51:15 +08:00
ckkbupt
7e3a7e7ba1 Update p06_create_managed_attributes.rst 2020-08-20 12:12:11 +08:00
XiongNeng
36a7c93c40 Merge pull request #327 from Vineyard-w/patch-1
Update p07_infinity_and_nan.rst
2020-08-02 21:41:34 +08:00
XiongNeng
9822dbda5c Merge pull request #326 from distanters/patch-2
错别字
2020-08-02 21:41:13 +08:00
XiongNeng
037138813c Merge pull request #325 from distanters/patch-1
dropwhile() 示例代码错误
2020-08-02 21:40:49 +08:00
XiongNeng
26ab1d8340 Merge pull request #320 from Jock2018/master
Update p03_keep_last_n_items.rst
2020-08-02 21:34:28 +08:00
XiongNeng
5cb110fd1c Merge pull request #319 from tincochan/patch-1
修改单词拼错的小错误
2020-08-02 21:34:04 +08:00
XiongNeng
433d8e3d9c Merge pull request #315 from woshihuo12/master
6.6 解析和修改XML 修改错别字
2020-08-02 21:31:45 +08:00
XiongNeng
a466647b2a Merge pull request #314 from tinohean/patch-1
Update p09_find_commonalities_in_dicts.rst
2020-08-02 21:31:21 +08:00
XiongNeng
f26be39448 Merge pull request #313 from Everfighting/master
add python function indent
2020-08-02 21:31:03 +08:00
XiongNeng
511c0b40bf Merge pull request #310 from vvtam/patch-2
Update p02_delegating_iteration.rst
2020-08-02 21:28:47 +08:00
XiongNeng
a0accc5105 Merge pull request #309 from vvtam/patch-1
Update p02_unpack_elements_from_iterables.rst
2020-08-02 21:28:25 +08:00
XiongNeng
7603cb41e3 Merge pull request #307 from domingo-dong/master
改了一个字
2020-08-02 21:28:10 +08:00
XiongNeng
52c91f2952 Merge pull request #306 from imhdx/master
修改错别字
2020-08-02 21:27:50 +08:00
XiongNeng
6295301207 Merge pull request #305 from Jiang-Hong/develop
some typos
2020-08-02 21:27:34 +08:00
Vineyard
2096cd3d6e Update p07_infinity_and_nan.rst
改了一个错别字~
2020-07-11 16:56:47 +08:00
Will
b5a95480ae 错别字
Line 14:想 → 像
2020-07-02 16:43:57 +08:00
Will
092eaf6b20 dropwhile() 示例代码错误
第一次示例 LIne 44,应该是:
    ...     for line in dropwhile(lambda line: line.startswith('#'), f):
而不是:
    ...     for line in dropwhile(lambda line: not line.startswith('#'), f):
因为这里的目的是不显示 # 开头的文本
2020-07-02 14:25:08 +08:00
xiongneng
913ea87aea update aboutme.rst 2020-05-04 00:36:04 +08:00
Jock2018
a54a3f9c12 Update p03_keep_last_n_items.rst
修改解决方案中:
“比如,下面的代码在多行上面做简单的文本匹配,
并返回匹配所在行的最后N行:”

为:
“比如,下面的代码在多行上面做简单的文本匹配,
并返回匹配所在行及其前面的N行:
”
原因是:个人感觉这样更接近于英文原文且更好理解。之前的译法,让我一开始理解为返回包括匹配行在内的最后N行,以为是匹配行之后的N行,实际上是之前的N行。
2020-04-04 09:46:23 +08:00
Tinc0ist
7da423aeda 修改单词拼错的小错误 2020-03-23 11:35:01 +08:00
woshihuo12
e85ae42d2a 8.6 创建可管理的属性 修正错别字 2020-02-22 10:06:06 +08:00
woshihuo12
9d124f4314 修正错别字 2020-02-22 09:40:28 +08:00
woshihuo12
54a2635927 6.9 编码和解码十六进制数 修改错别字 2020-02-15 18:45:12 +08:00
woshihuo12
dea2728c5b 6.6 解析和修改XML 修改错别字 2020-02-15 11:58:27 +08:00
everfight
a8ecf6e4f8 add indent
add indent
2020-01-20 16:17:45 +08:00
tinohean
821b6eda11 Update p09_find_commonalities_in_dicts.rst
移除多余的"寻"
移除"会"已保证语意通顺
2020-01-20 15:50:11 +08:00
everfight
7d45738e64 add python function indent
add python function indent
2020-01-20 15:44:08 +08:00
tam
ff20cb9cae Update p02_delegating_iteration.rst
修改错别字
2019-12-10 10:01:54 +08:00
tam
2fe014d563 Update p02_unpack_elements_from_iterables.rst
修改错别字
2019-12-09 15:19:56 +08:00
domingo-dong
d0fdd02ab9 改了一个字 2019-11-16 09:32:47 +08:00
imhdx
d9e17507f7 修改错别字 2019-11-12 19:09:16 +08:00
Hjiang
dc9b247a5e 也几点->也有几点 2019-11-05 23:50:05 +08:00
Hjiang
d5ab7a068c fix some typos 2019-11-02 02:03:10 +08:00
XiongNeng
01d3afe4af Merge pull request #303 from ronghuaxueleng/master
第二章第五节搜索和替换中补充命名分组的替换写法
2019-10-24 11:45:57 +08:00
曹强
33594bffa5 第二章第五节搜索和替换中补充命名分组的替换写法 2019-10-20 20:56:22 +08:00
brant-ruan
c8c5bd25d7 Update p13_determine_last_friday_date.rst
translate `last` as `the day before`, not `the final`.
2019-09-30 15:29:46 +08:00