pkg://gnuradio-changes.tar.gz:112368/
gnuradio/
gnuradio/
src/
gnu/
python/
Attic/oscope_display.py,v-1
downloads
This is a series of diffs for one CVS branch of one file. The
diffs start from the latest version in that branch and extend back to
the last version of the file verified against a backup. Please
examine this code to make sure that it belongs here and has not been
altered in any unauthorized manner.
Project: gnuradio
File: gnuradio/src/gnu/python/Attic/oscope_display.py
Branch: 1
Begin diff from version 1.2 to version 1.3.
Date: 2003.11.05.10.50.36
Version 1.2 is tagged head_post_BR_USRP_merge_1.
Version 1.2 is tagged merged_BR_USRP_to_head_1.
Version 1.2 is tagged BR_USRP_post_merge_1.
Version 1.2 is tagged merged_head_to_BR_USRP_1.
Version 1.3 has been removed.
######################################################################
######################################################################
Begin diff from version 1.1 to version 1.2.
Date: 2003.07.19.16.41.38
Version 1.2 is tagged head_post_BR_USRP_merge_1.
Version 1.2 is tagged merged_BR_USRP_to_head_1.
Version 1.2 is tagged BR_USRP_post_merge_1.
Version 1.2 is tagged merged_head_to_BR_USRP_1.
######################################################################
--- /tmp/rollback/gnuradio/1.1/oscope_display.py Fri Dec 12 19:18:53 2003
+++ /tmp/rollback/gnuradio/1.2/oscope_display.py Fri Dec 12 19:18:53 2003
@@ -213,6 +213,9 @@
# [ Maybe this works automagically with Numeric Python arrays??? ]
def set_data (self, list_of_values):
- self.data = map (wxRealPoint,
- range (len (list_of_values)), list_of_values)
+ # self.data = map (wxRealPoint,
+ # range (len (list_of_values)), list_of_values)
+ # self.data = map (lambda x, y : tuple ((x,y)),
+ # range (len (list_of_values)), list_of_values)
+ self.data = zip (range (len (list_of_values)), list_of_values)
self.Refresh ()
######################################################################
Version 1.1 has been verified against a backup.