===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-reticulate-1.18+dfsg/man/py_function_custom_scaffold.Rd-74-# Note that since the default value of parameter `k` is `1L`. It is wrapped
r-cran-reticulate-1.18+dfsg/man/py_function_custom_scaffold.Rd:75:# by `as.integer()` to ensure it's casted to integer before sending it to `tf$nn$top_k`
r-cran-reticulate-1.18+dfsg/man/py_function_custom_scaffold.Rd-76-# for execution. We then print out the python function result.
##############################################
r-cran-reticulate-1.18+dfsg/src/python.cpp-1174-  // underlying pointer
r-cran-reticulate-1.18+dfsg/src/python.cpp:1175:  void* ptr = R_ExternalPtrAddr(sexp);
r-cran-reticulate-1.18+dfsg/src/python.cpp-1176-  if (ptr == NULL) stop("Invalid pointer");
##############################################
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-9-inline void python_object_finalize(SEXP object) {
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h:10:  PyObject* pyObject = (PyObject*)R_ExternalPtrAddr(object);
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-11-  if (pyObject != NULL)
##############################################
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-29-    if (pyObject != R_NilValue) {
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h:30:      PyObject* obj = (PyObject*)R_ExternalPtrAddr(pyObject);
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-31-      if (obj != NULL)
##############################################
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-46-      return true;
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h:47:    else if ((PyObject*)R_ExternalPtrAddr(pyObject) == NULL)
r-cran-reticulate-1.18+dfsg/src/reticulate_types.h-48-      return true;
##############################################
r-cran-reticulate-1.18+dfsg/vignettes/arrays.Rmd-659-not the same as the above array *a* by comparing *a* with
r-cran-reticulate-1.18+dfsg/vignettes/arrays.Rmd:660:`np$array(A)` below.
r-cran-reticulate-1.18+dfsg/vignettes/arrays.Rmd-661-
##############################################
r-cran-reticulate-1.18+dfsg/R/wrapper.R-4-#' @param python_function Fully qualified name of Python function or class
r-cran-reticulate-1.18+dfsg/R/wrapper.R:5:#'   constructor (e.g. `tf$layers$average_pooling1d`)
r-cran-reticulate-1.18+dfsg/R/wrapper.R-6-#' @param r_prefix Prefix to add to generated R function name
##############################################
r-cran-reticulate-1.18+dfsg/R/wrapper.R-180-#' # Note that since the default value of parameter `k` is `1L`. It is wrapped
r-cran-reticulate-1.18+dfsg/R/wrapper.R:181:#' # by `as.integer()` to ensure it's casted to integer before sending it to `tf$nn$top_k`
r-cran-reticulate-1.18+dfsg/R/wrapper.R-182-#' # for execution. We then print out the python function result.
##############################################
r-cran-reticulate-1.18+dfsg/R/config.R-812-            if (type == "Anaconda") {
r-cran-reticulate-1.18+dfsg/R/config.R:813:              matches <- regexec("^Anaconda.*(32|64).*$", version)
r-cran-reticulate-1.18+dfsg/R/config.R-814-              matches <- regmatches(version, matches)[[1]]
##############################################
r-cran-reticulate-1.18+dfsg/R/config.R-823-            } else { # type == "PythonCore"
r-cran-reticulate-1.18+dfsg/R/config.R:824:              matches <- regexec("^(\\d)\\.(\\d)(?:-(32|64))?$", version)
r-cran-reticulate-1.18+dfsg/R/config.R-825-              matches <- regmatches(version, matches)[[1]]
##############################################
r-cran-reticulate-1.18+dfsg/R/python.R-90-#' @export
r-cran-reticulate-1.18+dfsg/R/python.R:91:`$.python.builtin.module` <- function(x, name) {
r-cran-reticulate-1.18+dfsg/R/python.R-92-
##############################################
r-cran-reticulate-1.18+dfsg/R/python.R-96-
r-cran-reticulate-1.18+dfsg/R/python.R:97:  `$.python.builtin.object`(x, name)
r-cran-reticulate-1.18+dfsg/R/python.R-98-}
##############################################
r-cran-reticulate-1.18+dfsg/R/python.R-203-#' @export
r-cran-reticulate-1.18+dfsg/R/python.R:204:`$.python.builtin.object` <- function(x, name) {
r-cran-reticulate-1.18+dfsg/R/python.R-205-  py_get_attr_or_item(x, name, TRUE)
##############################################
r-cran-reticulate-1.18+dfsg/R/python.R-235-#' @export
r-cran-reticulate-1.18+dfsg/R/python.R:236:`$<-.python.builtin.object` <- function(x, name, value) {
r-cran-reticulate-1.18+dfsg/R/python.R-237-  if (!py_is_null_xptr(x) && py_available())
##############################################
r-cran-reticulate-1.18+dfsg/R/python.R-244-#' @export
r-cran-reticulate-1.18+dfsg/R/python.R:245:`[[<-.python.builtin.object` <- `$<-.python.builtin.object`
r-cran-reticulate-1.18+dfsg/R/python.R-246-
##############################################
r-cran-reticulate-1.18+dfsg/R/python-dict.R-1-#' @export
r-cran-reticulate-1.18+dfsg/R/python-dict.R:2:`$.python.builtin.dict` <- function(x, name) {
r-cran-reticulate-1.18+dfsg/R/python-dict.R-3-  if (py_is_null_xptr(x) || !py_available())
##############################################
r-cran-reticulate-1.18+dfsg/R/python-dict.R-26-#' @export
r-cran-reticulate-1.18+dfsg/R/python-dict.R:27:`$<-.python.builtin.dict` <- function(x, name, value) {
r-cran-reticulate-1.18+dfsg/R/python-dict.R-28-  if (!py_is_null_xptr(x) && py_available())
##############################################
r-cran-reticulate-1.18+dfsg/R/python-dict.R-35-#' @export
r-cran-reticulate-1.18+dfsg/R/python-dict.R:36:`[<-.python.builtin.dict` <- `$<-.python.builtin.dict`
r-cran-reticulate-1.18+dfsg/R/python-dict.R-37-
r-cran-reticulate-1.18+dfsg/R/python-dict.R-38-#' @export
r-cran-reticulate-1.18+dfsg/R/python-dict.R:39:`[[<-.python.builtin.dict` <- `$<-.python.builtin.dict`
r-cran-reticulate-1.18+dfsg/R/python-dict.R-40-
##############################################
r-cran-reticulate-1.18+dfsg/inst/doc/arrays.Rmd-659-not the same as the above array *a* by comparing *a* with
r-cran-reticulate-1.18+dfsg/inst/doc/arrays.Rmd:660:`np$array(A)` below.
r-cran-reticulate-1.18+dfsg/inst/doc/arrays.Rmd-661-
##############################################
r-cran-reticulate-1.18+dfsg/debian/tests/run-unit-test-5-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-reticulate-1.18+dfsg/debian/tests/run-unit-test:6:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-reticulate-1.18+dfsg/debian/tests/run-unit-test-7-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM