Skip to content

Commit a69ee18

Browse files
committed
update
1 parent c865323 commit a69ee18

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,7 @@ master 分支是原始代码。
5757
- [ch011 - Python虚拟机中的函数机制](ch11.md)
5858
- [ch012 - Python虚拟机中的类机制](ch12.md)
5959
- [ch013 - Python运行环境初始化](ch13.md)
60+
- [ch014 - Python模块的动态加载机制](ch14.md)
61+
- [ch015 - Python多线程机制](ch15.md)
62+
- [ch016 - Python的内存管理机制](ch16.md)
6063

ch14.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## import/ from xxx import xxx
44

5+
各种 import 语法:
6+
57
```py
68
import package
79
import module
@@ -97,4 +99,5 @@ case IMPORT_NAME:
9799
SET_TOP(x);
98100
if (x != NULL) continue;
99101
break;
100-
```
102+
```
103+
import 的流程比较复杂,预知详情请查看源代码和原文。

ch15.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Python多线程机制

ch16.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Python的内存管理机制

0 commit comments

Comments
 (0)