From: Guido van Rossum Date: Mon, 14 Dec 1992 15:52:05 +0000 (+0000) Subject: bit vector is now implemented X-Git-Tag: v0.9.8~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2219afcdfa4b546c7ff350e535f4c6acef046353;p=thirdparty%2FPython%2Fcpython.git bit vector is now implemented --- diff --git a/Demo/sgi/sv/burstcapt.py b/Demo/sgi/sv/burstcapt.py index 922576c1566b..ce1e579f3656 100755 --- a/Demo/sgi/sv/burstcapt.py +++ b/Demo/sgi/sv/burstcapt.py @@ -14,8 +14,8 @@ def main(): go = raw_input('Press return to capture ' + `queuesize` + ' frames: ') result = v.CaptureBurst(svci) -## svci, buffer, bitvec = result # XXX Bit vector not yet implemented - svci, buffer = result + svci, buffer, bitvec = result +## svci, buffer = result # XXX If bit vector not yet implemented print 'Captured', svci[3], 'frames, i.e.', len(buffer)/1024, 'K bytes'