Skip to content

Commit c5975d5

Browse files
authoredJun 10, 2024··
fix(python): incorrect escaped characters cause warnings (#4538)
Fixes #4532. Succinctly, the issue is that the README is copied over into the `__init__.py` file as a python comment. And then python warns that things like `\|` and `\'`, which while not often, do organically and correctly show up in markdown syntax, are invalid escapes. Some people who have set their python config to error on warnings end up erroring on this. The solution is to mark the README string as a raw string `r'''` so python does not try to register the escapes. I'm not sure how to test this in code in this PR. I have done the following to make sure that this works: I copied the repro repo from #4532 [here](https://github.com/kaizencc/cdk_invalid_char/blob/main) and got it to show the warning locally. then, I updated the actual file manually from `'''` to `r'''` and got `pytest -W error` to give me a thumbs up. So that shows that changing `'''` to `r'''` does not expect the escaped characters to be valid. I tested my local jsii-pacmak by using it to package a module in `aws-cdk`, and unzipped the python package and confirmed that the `r'''` raw string indicator shows up for the README string in `__init__.py`, and nothing else. These two combined confirms for me that this solution will work. Again I'm not sure of the best way to test that in jsii-pacmak. --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0
1 parent 8f61747 commit c5975d5

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed
 

‎packages/@jsii/python-runtime/tests/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python jsii runtime tests
22
## Development Iteration
33

4-
When iterating on the jsii runtime for Python, the develomer must run
4+
When iterating on the jsii runtime for Python, the developer must run
55
`yarn build` before making a subsequent attempt at running `pytest` (e.g: via
66
`yarn test`). This is because the tests run on the code installed in `.env` and
77
this is updated only by `yarn build`.

‎packages/jsii-pacmak/lib/targets/python.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ const requirementsFile = path.resolve(
4444
// we use single-quotes for multi-line strings to allow examples within the
4545
// docstrings themselves to include double-quotes (see https://github.com/aws/jsii/issues/2569)
4646
const DOCSTRING_QUOTES = "'''";
47+
const RAW_DOCSTRING_QUOTES = `r${DOCSTRING_QUOTES}`;
4748

4849
export default class Python extends Target {
4950
protected readonly generator: PythonGenerator;
@@ -1902,7 +1903,7 @@ class PythonModule implements PythonType {
19021903
*/
19031904
private emitModuleDocumentation(code: CodeMaker) {
19041905
if (this.moduleDocumentation) {
1905-
code.line(DOCSTRING_QUOTES);
1906+
code.line(RAW_DOCSTRING_QUOTES); // raw string so that python does not attempt to interpret invalid escapes that are valid in markdown
19061907
code.line(this.moduleDocumentation);
19071908
code.line(DOCSTRING_QUOTES);
19081909
}

‎packages/jsii-pacmak/test/generated-code/__snapshots__/target-python.test.js.snap

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.