Rollup merge of #22869 - alexcrichton:stabilize-env, r=aturon

Now that the `std::env` module has had some time to bake this commit marks most
of its APIs as `#[stable]`. Some notable APIs that are **not** stable (and still
use the same `env` feature gate) are:

* `{set,get}_exit_status` - there are still questions about whether this is the
  right interface for setting/getting the exit status of a process.
* `page_size` - this may change location in the future or perhaps name as well.

This also effectively closes #22122 as the variants of `VarError` are
`#[stable]` now. (this is done intentionally)
This commit is contained in:
Manish Goregaokar
2015-02-28 13:55:55 +05:30
11 changed files with 96 additions and 203 deletions

View File

@@ -36,7 +36,6 @@
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]
#![feature(env)]
#![feature(int_uint)]
#![feature(old_io)]
#![feature(old_path)]