-
Notifications
You must be signed in to change notification settings - Fork 0
Replace : with in type annotations. #179
Copy link
Copy link
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestinterpreterRequires a code change in the interpreter.Requires a code change in the interpreter.majorRequires a major version change.Requires a major version change.testSomething related to the test suite.Something related to the test suite.
Milestone
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationenhancementNew feature or requestNew feature or requestinterpreterRequires a code change in the interpreter.Requires a code change in the interpreter.majorRequires a major version change.Requires a major version change.testSomething related to the test suite.Something related to the test suite.
Currently, type annotations require a semicolon
:between the type and the name, and allow any amount of spaces.No longer allow any character beside space
between the type and name in type annotations. Require at least one space between the type and name in the type annotations.Update the signatures generated by
SIGNATUREto follow the new type annotation form.Update the implementation, specification, test suite, and standard library for this.