Skip to content

Commit 92b5c71

Browse files
committed
---
yaml --- r: 226081 b: refs/heads/stable c: 5c5753e h: refs/heads/master i: 226079: 0d8642f v: v3
1 parent 5eeafd7 commit 92b5c71

File tree

7 files changed

+345
-362
lines changed

7 files changed

+345
-362
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ refs/heads/tmp: e5d90d98402475b6e154ce216f9efcb80da1a747
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1fe32ca12c51afcd761d9962f51a74ff0d07a591
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 6f7b4ce65a286aa2a99d6028ce4b08889907a0c5
32+
refs/heads/stable: 5c5753e876a437bb779e031e1a2c5dff59323028
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b

branches/stable/src/libstd/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,6 @@
148148
#![feature(vec_push_all)]
149149
#![feature(wrapping)]
150150
#![feature(zero_one)]
151-
#![cfg_attr(all(unix, not(target_os = "macos"), not(target_os = "ios")),
152-
feature(num_bits_bytes))]
153151
#![cfg_attr(windows, feature(str_utf16))]
154152
#![cfg_attr(test, feature(float_from_str_radix, range_inclusive, float_extras))]
155153
#![cfg_attr(test, feature(test, rustc_private, float_consts))]

branches/stable/src/libstd/process.rs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -769,24 +769,6 @@ mod tests {
769769
}
770770
}
771771

772-
#[cfg(all(unix, not(target_os="android")))]
773-
pub fn pwd_cmd() -> Command {
774-
Command::new("pwd")
775-
}
776-
#[cfg(target_os="android")]
777-
pub fn pwd_cmd() -> Command {
778-
let mut cmd = Command::new("/system/bin/sh");
779-
cmd.arg("-c").arg("pwd");
780-
cmd
781-
}
782-
783-
#[cfg(windows)]
784-
pub fn pwd_cmd() -> Command {
785-
let mut cmd = Command::new("cmd");
786-
cmd.arg("/c").arg("cd");
787-
cmd
788-
}
789-
790772
#[cfg(all(unix, not(target_os="android")))]
791773
pub fn env_cmd() -> Command {
792774
Command::new("env")

0 commit comments

Comments
 (0)