[Python-checkins] python/dist/src/Misc cheatsheet,1.10,1.10.2.1

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Mon Aug 22 21:35:36 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5243/Misc

Modified Files:
      Tag: release24-maint
	cheatsheet 
Log Message:
backport bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation



Index: cheatsheet
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/cheatsheet,v
retrieving revision 1.10
retrieving revision 1.10.2.1
diff -u -d -r1.10 -r1.10.2.1
--- cheatsheet	10 Sep 2004 12:59:25 -0000	1.10
+++ cheatsheet	22 Aug 2005 19:35:24 -0000	1.10.2.1
@@ -209,7 +209,7 @@
         +x, -x, ~x                        Unary operators
         x**y                              Power
         x*y  x/y  x%y x//y                mult, division, modulo, floor division
-        x+y  x-y                          addition, substraction
+        x+y  x-y                          addition, subtraction
         x<<y   x>>y                       Bit shifting
         x&y                               Bitwise and
         x^y                               Bitwise exclusive or



More information about the Python-checkins mailing list