summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/gnuradio
diff options
context:
space:
mode:
Diffstat (limited to 'gnuradio-runtime/python/gnuradio')
-rw-r--r--gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py2
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/gateway.py4
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py2
-rw-r--r--gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py2
-rw-r--r--gnuradio-runtime/python/gnuradio/gr_unittest.py2
-rw-r--r--gnuradio-runtime/python/gnuradio/gru/freqz.py2
6 files changed, 7 insertions, 7 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
index 56604d4fac..cb66baebb9 100644
--- a/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
+++ b/gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
@@ -144,7 +144,7 @@ class GrDataPlotParent(gr.top_block, QtGui.QWidget):
npts = self.get_npts()
if(self._npts != npts):
- # Adjust buffers to accomodate new settings
+ # Adjust buffers to accommodate new settings
for n in range(self._ncons):
if(npts < self._npts):
if(self._data_len[n] < npts):
diff --git a/gnuradio-runtime/python/gnuradio/gr/gateway.py b/gnuradio-runtime/python/gnuradio/gr/gateway.py
index 2bc1b21591..1acf900f84 100644
--- a/gnuradio-runtime/python/gnuradio/gr/gateway.py
+++ b/gnuradio-runtime/python/gnuradio/gr/gateway.py
@@ -51,7 +51,7 @@ def pointer_to_ndarray(addr, dtype, nitems):
########################################################################
class gateway_handler(gr.feval_ll):
- #dont put a constructor, it wont work
+ #don't put a constructor, it won't work
def init(self, callback):
self._callback = callback
@@ -69,7 +69,7 @@ class gateway_handler(gr.feval_ll):
########################################################################
class msg_handler(gr.feval_p):
- #dont put a constructor, it wont work
+ #don't put a constructor, it won't work
def init(self, callback):
self._callback = callback
diff --git a/gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py b/gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py
index ff33224d58..f4f062f715 100644
--- a/gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py
+++ b/gnuradio-runtime/python/gnuradio/gr/gr_threading_23.py
@@ -109,7 +109,7 @@ class _RLock(_Verbose):
self.__owner = me
self.__count = 1
if __debug__:
- self._note("%s.acquire(%s): initial succes", self, blocking)
+ self._note("%s.acquire(%s): initial success", self, blocking)
else:
if __debug__:
self._note("%s.acquire(%s): failure", self, blocking)
diff --git a/gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py b/gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py
index efb20dca59..6dddce7e22 100644
--- a/gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py
+++ b/gnuradio-runtime/python/gnuradio/gr/gr_threading_24.py
@@ -109,7 +109,7 @@ class _RLock(_Verbose):
self.__owner = me
self.__count = 1
if __debug__:
- self._note("%s.acquire(%s): initial succes", self, blocking)
+ self._note("%s.acquire(%s): initial success", self, blocking)
else:
if __debug__:
self._note("%s.acquire(%s): failure", self, blocking)
diff --git a/gnuradio-runtime/python/gnuradio/gr_unittest.py b/gnuradio-runtime/python/gnuradio/gr_unittest.py
index e9d35d6869..1b8323ad7a 100644
--- a/gnuradio-runtime/python/gnuradio/gr_unittest.py
+++ b/gnuradio-runtime/python/gnuradio/gr_unittest.py
@@ -46,7 +46,7 @@ class TestCase(unittest.TestCase):
(default 7) and comparing to zero.
Note that decimal places (from zero) is usually not the same
- as significant digits (measured from the most signficant digit).
+ as significant digits (measured from the most significant digit).
"""
if round(second.real-first.real, places) != 0:
raise self.failureException(
diff --git a/gnuradio-runtime/python/gnuradio/gru/freqz.py b/gnuradio-runtime/python/gnuradio/gru/freqz.py
index 7ce25e2de1..edea6113b6 100644
--- a/gnuradio-runtime/python/gnuradio/gru/freqz.py
+++ b/gnuradio-runtime/python/gnuradio/gru/freqz.py
@@ -120,7 +120,7 @@ class poly1d(object):
p[k] is the coefficient on the kth power of x (backwards from
sequencing the coefficient array.
- polynomials can be added, substracted, multplied and divided (returns
+ polynomials can be added, substracted, multiplied and divided (returns
quotient and remainder).
asarray(p) will also give the coefficient array, so polynomials can
be used in all functions that accept arrays.