Displaying 1 result from an estimated 1 matches for "c73120".
Did you mean:
373120
2017 Sep 08
1
Bug: dput/deparse with named character vector inside list
...ext = deparse(z)) : <text>:1:12: unexpected '='
1: list(a = b =
^
But it works fine if you just provide a named character vector:
> dput(z$a)
structure("foo", .Names = "b")
I know that there were some recent improvements to 'deparse' (c73120,
73144). Among the failures on my package on R-devel on CRAN, a test
run on version as old as r73150 does manifest this bug
(https://www.r-project.org/nosvn/R.check/r-devel-linux-x86_64-fedora-gcc/httptest-00check.html),
so the timing does suggest that those changes could be related.
Neal
> s...