search for: r85895

Displaying 3 results from an estimated 3 matches for "r85895".

Did you mean: r85295
2024 Feb 14
2
certain pipe() use cases not working in r-devel
...version 4.3.2 (2023-10-31)" > con <- pipe("cat") > writeLines("hello, world", con) hello, world But in r-devel on macOS, this is silent no-op, i.e. "hello, world" does not print: > R.version.string [1] "R Under development (unstable) (2024-02-13 r85895)" > con <- pipe("cat") > writeLines("hello, world", con) My colleague Lionel Henry confirms he sees the same results on linux. This particular example with cat doesn't work on Windows, so I don't have any useful observations for that OS. You might say thi...
2024 Feb 15
1
certain pipe() use cases not working in r-devel
? Wed, 14 Feb 2024 14:43:12 -0800 Jennifer Bryan <jenny.f.bryan at gmail.com> ?????: > But in r-devel on macOS, this is silent no-op, i.e. "hello, world" > does not print: > > > R.version.string > [1] "R Under development (unstable) (2024-02-13 r85895)" > > con <- pipe("cat") > > writeLines("hello, world", con) I can reproduce this on 64-bit Linux. I think that this boils down to problems with cleanup in R_pclose_pg [*]. The FILE* fp corresponding to the child process pipe is created using fdopen() in...
2024 Feb 17
1
certain pipe() use cases not working in r-devel
...t; writeLines("hello, world", con) > > hello, world > > > > But in r-devel on macOS, this is silent no-op, i.e. "hello, world" does > not > > print: > > > >> R.version.string > > [1] "R Under development (unstable) (2024-02-13 r85895)" > >> con <- pipe("cat") > >> writeLines("hello, world", con) > > My colleague Lionel Henry confirms he sees the same results on linux. > > This particular example with cat doesn't work on Windows, so I don't have > > any usef...