changeset 8:e260fb2db3e5

More stuff
author Atul Varma <varmaa@toolness.com>
date Thu, 05 Jun 2008 15:55:15 -0700
parents 482a0ed021da
children eaf4ddc3b092
files PythonForJsProgrammers.txt
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/PythonForJsProgrammers.txt	Thu Jun 05 15:53:15 2008 -0700
+++ b/PythonForJsProgrammers.txt	Thu Jun 05 15:55:15 2008 -0700
@@ -157,7 +157,6 @@
     >>> a = 5              # Assignment works in statements.
     >>> a += 1             # Add-assignment does too.
     6
-
     >>> if a = 1:          # But you can't assign in an expression.
     ...     pass
     Traceback (most recent call last):