| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace tests that assert on token output with auto-updatable samples (#1649) | Oleh Prypin | 2021-01-18 | 1 | -506/+0 |
| | | |||||
| * | Run pyupgrade across codebase to modernize syntax and patterns (#1622) | Jon Dufresne | 2021-01-17 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pyupgrade is a tool to automatically upgrade syntax for newer versions of the Python language. The project has been Python 3 only since 35544e2fc6eed0ce4a27ec7285aac71ff0ddc473, allowing for several cleanups: - Remove unnecessary "-*- coding: utf-8 -*-" cookie. Python 3 reads all source files as utf-8 by default. - Replace IOError/EnvironmentError with OSError. Python 3 unified these exceptions. The old names are aliases only. - Use the Python 3 shorter super() syntax. - Remove "utf8" argument form encode/decode. In Python 3, this value is the default. - Remove "r" from open() calls. In Python 3, this value is the default. - Remove u prefix from Unicode strings. In Python 3, all strings are Unicode. - Replace io.open() with builtin open(). In Python 3, these functions are functionally equivalent. Co-authored-by: Matthäus G. Chajdas <Anteru@users.noreply.github.com> | ||||
| * | all: remove "u" string prefix (#1536) | Georg Brandl | 2020-09-08 | 1 | -213/+213 |
| | | | | | | | | | | | | * all: remove "u" string prefix * util: remove unirange Since Python 3.3, all builds are wide unicode compatible. * unistring: remove support for narrow-unicode builds which stopped being relevant with Python 3.3 | ||||
| * | Replaced Literal.Number with Number | Colin Kennedy | 2019-12-05 | 1 | -33/+33 |
| | | |||||
| * | Replaced Literal.String with String | Colin Kennedy | 2019-12-05 | 1 | -21/+21 |
| | | |||||
| * | Separated different pieces of text into whitespace and punctuation and text | Colin Kennedy | 2019-12-05 | 1 | -130/+130 |
| | | |||||
| * | Fixed numeric test | Colin Kennedy | 2019-12-05 | 1 | -4/+4 |
| | | |||||
| * | Added scientific notation support for USD numbers | Colin Kennedy | 2019-12-05 | 1 | -1/+9 |
| | | |||||
| * | Replaced `Generic` with `Text` and `Punctuation` in test_usd.py | Colin Kennedy | 2019-12-04 | 1 | -25/+25 |
| | | |||||
| * | Removed module import from test_usd.py | Colin Kennedy | 2019-12-04 | 1 | -312/+297 |
| | | |||||
| * | Updated unittests to make sure outer-text-pair matches are not matched a ↵ | Colin Kennedy | 2019-12-04 | 1 | -2/+55 |
| | | | | | string types | ||||
| * | Fixed a typo in an existing docstring | Colin Kennedy | 2019-12-01 | 1 | -1/+1 |
| | | |||||
| * | Added missing docstrings | Colin Kennedy | 2019-12-01 | 1 | -23/+40 |
| | | |||||
| * | Renamed unittest class to be more explicit | Colin Kennedy | 2019-12-01 | 1 | -1/+1 |
| | | |||||
| * | Changed the special names of USD to the "Builtins" tokens, instead of ↵ | Colin Kennedy | 2019-12-01 | 1 | -1/+1 |
| | | | | | "Attribute" token | ||||
| * | Fixed issue where attributes were getting matched, even in USD metadata | Colin Kennedy | 2019-12-01 | 1 | -5/+5 |
| | | |||||
| * | Added a separate test method for testing USD metadata | Colin Kennedy | 2019-11-30 | 1 | -1/+47 |
| | | |||||
| * | Added string priority test | Colin Kennedy | 2019-11-30 | 1 | -2/+15 |
| | | |||||
| * | Added single / multiline string tests | Colin Kennedy | 2019-11-30 | 1 | -9/+55 |
| | | |||||
| * | Added test_composition_arcs test method | Colin Kennedy | 2019-11-30 | 1 | -106/+104 |
| | | |||||
| * | Ran auto-fix on test_usd.py | Colin Kennedy | 2019-11-30 | 1 | -177/+174 |
| | | |||||
| * | Added test_numbers | Colin Kennedy | 2019-11-30 | 1 | -7/+122 |
| | | |||||
| * | Changed the attribute regex to detect if "timeSamples" was authored | Colin Kennedy | 2019-11-30 | 1 | -1/+3 |
| | | |||||
| * | Got the `test_attribute` method to pass | Colin Kennedy | 2019-11-30 | 1 | -17/+103 |
| | | |||||
| * | Renamed test_usda.py to test_usd.py | Colin Kennedy | 2019-11-30 | 1 | -0/+206 |
