Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
bpo-45340: Don't create object dictionaries unless actually needed#28802
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
8214006
45c9814
c3de09e
58dd2a0
769183a
1e6cd1f
a8fbb34
37d8cc6
0e022f9
ddd2e2c
e979575
42361ad
e9b09d5
70dc34f
022f2c5
4ec5f11
1818a5a
bfc7be0
62a3a59
7978220
b25b1d9
7b2efa4
459e29e
83b90c5
8c894f3
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Object attributes are held in an array instead of a dictionary. An object's | ||
dictionary are created lazily, only when needed. Reduces the memory | ||
consumption of a typical Python object by about 30%. Patch by Mark Shannon. |
Uh oh!
There was an error while loading.Please reload this page.