From b69079252121e0d5d48a5bf28f4fd0490b5cd41f Mon Sep 17 00:00:00 2001 From: yt2b Date: Fri, 2 Dec 2022 21:49:13 +0900 Subject: [PATCH] Fix Python object path --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 9a1b7bd71b..35751ba0fc 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -189,7 +189,7 @@ Python Standard Library modules in Rust (`vm/src/stdlib`). In Python everything can be represented as an object. The `vm/src/builtins` directory holds the Rust code used to represent different Python objects and their methods. The core implementation of what a Python object is can be found in -`vm/src/pyobjectrc.rs`. +`vm/src/object/core.rs`. ### Code generation