[pywin32-checkins] pywin32/Pythonwin/pywin/Demos openGLDemo.py, 1.2, 1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2009-01-28 13:16:41
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4918/Pythonwin/pywin/Demos Modified Files: openGLDemo.py Log Message: some final py3k modernizations from py3k branch Index: openGLDemo.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/Demos/openGLDemo.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openGLDemo.py 11 Mar 2000 00:56:33 -0000 1.2 --- openGLDemo.py 28 Jan 2009 11:37:02 -0000 1.3 *************** *** 39,43 **** ! threeto8 = [0, 0111>>1, 0222>>1, 0333>>1, 0444>>1, 0555>>1, 0666>>1, 0377] twoto8 = [0, 0x55, 0xaa, 0xff] oneto8 = [0, 255] --- 39,44 ---- ! #threeto8 = [0, 0o111>>1, 0o222>>1, 0o333>>1, 0o444>>1, 0o555>>1, 0o666>>1, 0o377] ! threeto8 = [0, 73>>1, 146>>1, 219>>1, 292>>1, 365>>1, 438>>1, 255] twoto8 = [0, 0x55, 0xaa, 0xff] oneto8 = [0, 255] |