===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
cython-0.29.21/tests/run/sequential_parallel.pyx-773-    #ifdef _OPENMP
cython-0.29.21/tests/run/sequential_parallel.pyx:774:    #define _get_addr(_x, _idx) &_x
cython-0.29.21/tests/run/sequential_parallel.pyx-775-    #else
cython-0.29.21/tests/run/sequential_parallel.pyx:776:    #define _get_addr(_x, _idx) (&_x+_idx)
cython-0.29.21/tests/run/sequential_parallel.pyx-777-    #endif
cython-0.29.21/tests/run/sequential_parallel.pyx:778:    #define address_of_temp(store, temp, idx) store = _get_addr(temp, idx)
cython-0.29.21/tests/run/sequential_parallel.pyx:779:    #define address_of_temp2(store, ignore, temp, idx) store = _get_addr(temp, idx)
cython-0.29.21/tests/run/sequential_parallel.pyx-780-
##############################################
cython-0.29.21/tests/run/test_grammar.py-275-    def test_var_annot_basic_semantics(self):
cython-0.29.21/tests/run/test_grammar.py:276:        # execution order
cython-0.29.21/tests/run/test_grammar.py-277-        with self.assertRaises(ZeroDivisionError):
##############################################
cython-0.29.21/Cython/Compiler/ExprNodes.py-686-
cython-0.29.21/Cython/Compiler/ExprNodes.py:687:    def check_const_addr(self):
cython-0.29.21/Cython/Compiler/ExprNodes.py-688-        self.addr_not_const()
##############################################
cython-0.29.21/Cython/Compiler/ExprNodes.py-2164-
cython-0.29.21/Cython/Compiler/ExprNodes.py:2165:    def check_const_addr(self):
cython-0.29.21/Cython/Compiler/ExprNodes.py-2166-        entry = self.entry
##############################################
cython-0.29.21/Cython/Compiler/ExprNodes.py-3394-
cython-0.29.21/Cython/Compiler/ExprNodes.py:3395:    def check_const_addr(self):
cython-0.29.21/Cython/Compiler/ExprNodes.py:3396:        return self.base.check_const_addr() and self.index.check_const()
cython-0.29.21/Cython/Compiler/ExprNodes.py-3397-
##############################################
cython-0.29.21/Cython/Compiler/ExprNodes.py-10352-    def check_const(self):
cython-0.29.21/Cython/Compiler/ExprNodes.py:10353:        return self.operand.check_const_addr()
cython-0.29.21/Cython/Compiler/ExprNodes.py-10354-
##############################################
cython-0.29.21/Cython/Debugger/Tests/test_libpython_in_gdb.py-106-                                         gdbvar='longval')
cython-0.29.21/Cython/Debugger/Tests/test_libpython_in_gdb.py:107:        assert gdb.parse_and_eval('$longval->ob_type == &PyLong_Type')
cython-0.29.21/Cython/Debugger/Tests/test_libpython_in_gdb.py-108-
##############################################
cython-0.29.21/Cython/Debugger/Tests/test_libcython_in_gdb.py-73-    def read_var(self, varname, cast_to=None):
cython-0.29.21/Cython/Debugger/Tests/test_libcython_in_gdb.py:74:        result = gdb.parse_and_eval('$cy_cvalue("%s")' % varname)
cython-0.29.21/Cython/Debugger/Tests/test_libcython_in_gdb.py-75-        if cast_to:
##############################################
cython-0.29.21/docs/src/userguide/source_files_and_compilation.rst-553-Pyximport puts both your ``.c`` file and the platform-specific binary into
cython-0.29.21/docs/src/userguide/source_files_and_compilation.rst:554:a separate build directory, usually ``$HOME/.pyxblx/``.  To copy it back
cython-0.29.21/docs/src/userguide/source_files_and_compilation.rst-555-into the package hierarchy (usually next to the source file) for manual
##############################################
cython-0.29.21/docs/src/userguide/numpy_pythran.rst-48-Please note that Pythran can further be tweaked by adding settings in the
cython-0.29.21/docs/src/userguide/numpy_pythran.rst:49:``$HOME/.pythranrc`` file. For instance, this can be used to enable `Boost.SIMD`_ support.
cython-0.29.21/docs/src/userguide/numpy_pythran.rst-50-See the `Pythran user manual
##############################################
cython-0.29.21/docs/src/userguide/wrapping_CPlusPlus.rst-178-
cython-0.29.21/docs/src/userguide/wrapping_CPlusPlus.rst:179:Run ``$ python setup.py build_ext --inplace``
cython-0.29.21/docs/src/userguide/wrapping_CPlusPlus.rst-180-
##############################################
cython-0.29.21/debian/rules-53-	: # Generate a manpage using help2man
cython-0.29.21/debian/rules:54:	PYTHONPATH=`/bin/ls -d $(CURDIR)/build/lib.*-$(PY3DEF)` \
cython-0.29.21/debian/rules-55-	  help2man --no-info --no-discard-stderr \
##############################################
cython-0.29.21/debian/rules-105-	 echo =============== $$P start ===============; \
cython-0.29.21/debian/rules:106:	 if PYTHONPATH=`/bin/ls -d $(CURDIR)/build/lib.*-$$P` \
cython-0.29.21/debian/rules-107-	  /usr/bin/python$$P runtests.py $(RUNTESTSOPTS) \