Skip to content

Commit

Permalink
Rollup merge of #41763 - frewsxcv:unicode-py, r=alexcrichton
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
frewsxcv committed May 5, 2017
2 parents 1ef0aef + ed1b78c commit 5bed9dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libstd_unicode/tables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down
2 changes: 1 addition & 1 deletion src/etc/unicode.py → src/libstd_unicode/unicode.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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)]
'''
Expand Down

0 comments on commit 5bed9dc

Please sign in to comment.