diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-05-04 22:36:48 -0400 |
|---|---|---|
| committer | Corey Farwell <coreyf@rwell.org> | 2017-05-04 22:37:55 -0400 |
| commit | ed1b78c16b0dc50bdf8141aad16164c5364f4347 (patch) | |
| tree | 83e84ec078ee6b38b80a45c45337d154d5bccf3d | |
| parent | 59f1a2f948a5e17d6675957813376ad8cc1d95ec (diff) | |
| download | rust-ed1b78c16b0dc50bdf8141aad16164c5364f4347.tar.gz rust-ed1b78c16b0dc50bdf8141aad16164c5364f4347.zip | |
Move unicode Python script into libstd_unicode crate.
The only place this Python script is used is inside the libstd_unicode crate, so lets move it there.
| -rw-r--r-- | src/libstd_unicode/tables.rs | 2 | ||||
| -rwxr-xr-x | src/libstd_unicode/unicode.py (renamed from src/etc/unicode.py) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd_unicode/tables.rs b/src/libstd_unicode/tables.rs index 7a5667b96a5..7173040350e 100644 --- a/src/libstd_unicode/tables.rs +++ b/src/libstd_unicode/tables.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// NOTE: The following code was generated by "src/etc/unicode.py", do not edit directly +// NOTE: The following code was generated by "./unicode.py", do not edit directly #![allow(missing_docs, non_upper_case_globals, non_snake_case)] diff --git a/src/etc/unicode.py b/src/libstd_unicode/unicode.py index e5389c112e8..5f9def02c7d 100755 --- a/src/etc/unicode.py +++ b/src/libstd_unicode/unicode.py @@ -35,7 +35,7 @@ preamble = '''// Copyright 2012-2016 The Rust Project Developers. See the COPYRI // option. This file may not be copied, modified, or distributed // except according to those terms. -// NOTE: The following code was generated by "src/etc/unicode.py", do not edit directly +// NOTE: The following code was generated by "./unicode.py", do not edit directly #![allow(missing_docs, non_upper_case_globals, non_snake_case)] ''' |
