Skip to content

Commit 5b20c45

Browse files
authored
Implement more except* (#6545)
* clean build documentation * SetExcInfo * fix EG subclass * test_except_star
1 parent 8d90028 commit 5b20c45

File tree

7 files changed

+1634
-81
lines changed

7 files changed

+1634
-81
lines changed

.github/copilot-instructions.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ The `Lib/` directory contains Python standard library files copied from the CPyt
7373
- `unittest.skip("TODO: RustPython <reason>")`
7474
- `unittest.expectedFailure` with `# TODO: RUSTPYTHON <reason>` comment
7575

76+
### Clean Build
77+
78+
When you modify bytecode instructions, a full clean is required:
79+
80+
```bash
81+
rm -r target/debug/build/rustpython-* && find . | grep -E "\.pyc$" | xargs rm -r
82+
```
83+
7684
### Testing
7785

7886
```bash

0 commit comments

Comments
 (0)