We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552c045 commit 7b7ea2fCopy full SHA for 7b7ea2f
1 file changed
raw/Python, the GIL, and Pyston.md
@@ -42,10 +42,7 @@ overheads low.
42
43
### 问题2:内存模型
44
45
-This is something that most Python programmers don't think about because we
46
-don't have to, but the "memory model" specifies the potential ways one thread
47
-is allowed to observe the effects of another thread. Let's say we have one
48
-thread that runs:
+有一些大多数Python程序员不用考虑的东西(因为他们不必考虑),但是“内存模型”指定了允许一个线程观察另一个线程影响的潜在方式。比方说,我们有一个线程运行:
49
50
```python
51
a = b = 0
@@ -55,7 +52,7 @@ thread that runs:
55
52
b = 2
56
53
```
57
54
58
-And then we have a second thread:
+然后,我们有第二个线程:
59
60
61
def thread2():
0 commit comments