Auto merge of #16852 - servo:illegal_floating_point_literal_pattern, r=jdm+SimonSapin

Fix illegal_floating_point_literal_pattern again and rustup…

… to compiler that has it, to avoid regressing again.

Upgrade to (rustc 1.19.0-nightly (e17a1227a 2017-05-12)

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16852)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-05-13 11:25:07 -05:00 committed by GitHub
commit 5e5d3559d9
4 changed files with 7 additions and 10 deletions

View file

@ -321,7 +321,7 @@ class MachCommands(CommandBase):
)
stdout, _ = cmd.communicate()
for line in stdout.splitlines():
if line.startswith("+") and not line.startswith("+++"):
if line.startswith(b"+") and not line.startswith(b"+++"):
to_keep[tool].add(line[1:])
removing_anything = False