Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b

Parent Directory (gnuradio)

Kludge Summary of gnuradio/grc

Total Kludges 2
Total Subdirs 2

All Directories within gnuradio/grc

All Files within gnuradio/grc

Kludge Snippets in gnuradio/grc

gnuradio/grc/gui/Connection.py

Category FIXME
Committer Josh Blum
Commit ID fa465d160b0c53fae3ad7876cf429263157dd60a
74        		else: self._arrow_color = Colors.CONNECTION_ENABLED_COLOR
75        
76        	def _update_after_move(self):
77        		"""Calculate coordinates."""
78        		self.clear() #FIXME do i want this here?
79        		#source connector
80        		source = self.get_source()
81        		X, Y = source.get_connector_coordinate()
82        		x1, y1 = self.x1 + X, self.y1 + Y
				

gnuradio/grc/python/expr_utils.py

Category TODO
Committer jcorgan
Commit ID d52c462e5fd3eae7d00505a64a013e811d43234c
52        def expr_split(expr):
53        	"""
54        	Split up an expression by non alphanumeric characters, including underscore.
55        	Leave strings in-tact.
56        	#TODO ignore escaped quotes, use raw strings.
57        	@param expr an expression string
58        	@return a list of string tokens that form expr
59        	"""
60        	toks = list()