-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
The tidyverse supports four previous versions of R, so we'll drop some workarounds for some R bugs at some stage:
- The workaround in
parse_transform_serialize_r()introduced with 5523a8f ingetRversion() < 3.4was not required in R 3.4 anymore. - The extra parsing in
get_parse_data()introduced in Long character string gets truncated #216 is fixed since R 3.5.2 (bug 16041, https://cran.r-project.org/doc/manuals/r-release/NEWS.html), we don't need another extra round of parsing after this version. - The transformer subsetting introduced in 9c4fc1e with
if (getRversion() >= 3.6)forforce_assignment_op()is not needed with R 3.6 anymore. - Fixing parse data for
0xnot needed in R 4.1 anymore.
*checked: already removed in the default branch
IndrajeetPatil