diff --git a/pyguide.html b/pyguide.html index af00822..30357f3 100644 --- a/pyguide.html +++ b/pyguide.html @@ -136,7 +136,7 @@
- Revision 2.29 + Revision 2.39
@@ -165,12 +165,12 @@pychecker
over your code.
An example of the use of this feature is:
@@ -1018,7 +1057,7 @@ from sound.effects import echoCons: - Can lead to confusing bugs. Such as this example based on + Can lead to confusing bugs. Such as this example based on PEP-0227:
i = 4 @@ -1034,7 +1073,7 @@ from sound.effects import echoSo
+foo([1, 2, 3])
will print1 2 3 3
, not1 2 3 4
. -Decision: @@ -1132,7 +1171,7 @@ from sound.effects import echo
- Use the Queue module's
Queue
data type as the preferred + Use the Queue module'sQueue
data type as the preferred way to communicate data between threads. Otherwise, use the threading module and its locking primitives. Learn about the proper use @@ -1171,7 +1210,7 @@ from sound.effects import echo difficult than code that is longer but is straightforward.-Decision: +Decision: Avoid these features in your code.
@@ -1202,8 +1241,8 @@ from sound.effects import echo