Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-27 Thread Laurent Gautier
On 2012-08-27 11:32, Uwe Ligges wrote: On 26.08.2012 20:01, Laurent Gautier wrote: On 2012-08-26 19:27, Prof Brian Ripley wrote: On 26/08/2012 18:20, Laurent Gautier wrote: On 2012-08-26 19:03, Prof Brian Ripley wrote: On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-27 Thread Uwe Ligges
On 26.08.2012 20:01, Laurent Gautier wrote: On 2012-08-26 19:27, Prof Brian Ripley wrote: On 26/08/2012 18:20, Laurent Gautier wrote: On 2012-08-26 19:03, Prof Brian Ripley wrote: On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the following apparent oddity: the package

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Laurent Gautier
On 2012-08-26 19:27, Prof Brian Ripley wrote: On 26/08/2012 18:20, Laurent Gautier wrote: On 2012-08-26 19:03, Prof Brian Ripley wrote: On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the following apparent oddity: the package "datasets" does not appear to export anything

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Prof Brian Ripley
On 26/08/2012 18:20, Laurent Gautier wrote: On 2012-08-26 19:03, Prof Brian Ripley wrote: On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the following apparent oddity: the package "datasets" does not appear to export anything out of its namespace: > ns_datasets <- getName

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Laurent Gautier
On 2012-08-26 19:03, Prof Brian Ripley wrote: On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the following apparent oddity: the package "datasets" does not appear to export anything out of its namespace: > ns_datasets <- getNamespace('datasets') > getNamespaceExports(ns_d

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Laurent Gautier
On 2012-08-26 18:32, Dirk Eddelbuettel wrote: On 26 August 2012 at 18:25, Laurent Gautier wrote: | Hi, | | I just stumbled on the following apparent oddity: the package "datasets" | does not appear to export anything out of its namespace: | | > ns_datasets <- getNamespace('datasets') | > getNam

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Prof Brian Ripley
On 26/08/2012 17:25, Laurent Gautier wrote: Hi, I just stumbled on the following apparent oddity: the package "datasets" does not appear to export anything out of its namespace: > ns_datasets <- getNamespace('datasets') > getNamespaceExports(ns_datasets) character(0) Not the case with other

Re: [Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Dirk Eddelbuettel
On 26 August 2012 at 18:25, Laurent Gautier wrote: | Hi, | | I just stumbled on the following apparent oddity: the package "datasets" | does not appear to export anything out of its namespace: | | > ns_datasets <- getNamespace('datasets') | > getNamespaceExports(ns_datasets) | character(0) |

[Rd] Package "datasets" not exporting anything on a recent R-2.15.1-patched

2012-08-26 Thread Laurent Gautier
Hi, I just stumbled on the following apparent oddity: the package "datasets" does not appear to export anything out of its namespace: > ns_datasets <- getNamespace('datasets') > getNamespaceExports(ns_datasets) character(0) Not the case with other packages (example here with "utils"): > ns_ut