summaryrefslogtreecommitdiffstats
path: root/Demo
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-12-14 15:52:05 (GMT)
committerGuido van Rossum <guido@python.org>1992-12-14 15:52:05 (GMT)
commit2219afcdfa4b546c7ff350e535f4c6acef046353 (patch)
treeaca705a3d887bbb81915871ac0870009d4053e2a /Demo
parent411588c888c67de0c1301cbc0da19ff798ff2f64 (diff)
downloadcpython-2219afcdfa4b546c7ff350e535f4c6acef046353.zip
cpython-2219afcdfa4b546c7ff350e535f4c6acef046353.tar.gz
cpython-2219afcdfa4b546c7ff350e535f4c6acef046353.tar.bz2
bit vector is now implemented
Diffstat (limited to 'Demo')
-rwxr-xr-xDemo/sgi/sv/burstcapt.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/sgi/sv/burstcapt.py b/Demo/sgi/sv/burstcapt.py
index 922576c..ce1e579 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'