[Rd] Unsigned binary

2022-06-08 Thread Scott McAllister
Good afternoon Are you aware that the current release of R for Windows (4.2.0) is unsigned? Do you have any plans to rectify this ? Thanks, Scott McAllister - Support Engineer Rate Your Experience: Great | Good

Re: [Rd] trace() an S3-classed function in .GlobalEnv

2022-06-08 Thread Michael Chirico
Thanks, that seems like a reasonable assessment. Also worth noting that tracing wipes out a function's attributes, which is also not documented: foo = function(x) { invisible(1 + 1) } attr(foo, "bar") <- 2 trace(foo, quote(message('traced'))) names(attributes(foo)) # [1] "original" "source"