Message400462
| Author | methane |
|---|---|
| Recipients | Guido.van.Rossum, gvanrossum, iritkatriel, methane, rhettinger, serhiy.storchaka, terry.reedy |
| Date | 2021-08-28.06:36:16 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1630132576.34.0.180017366522.issue36521@roundup.psfhosted.org> |
| In-reply-to |
| Content | |
|---|---|
I'd like to remove docstring from code object at all. func.__doc__ can be set by MAKE_FUNCTION or STORE_ATTR. Pros are: * Code objects can be bit smaller than adding co_doc. * Many code objects don't have docstrings. (e.g. lambdas, somprehensions, and PEP 649) * We can strip docstring on runtime and free some memory. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2021-08-28 06:36:16 | methane | set | recipients: + methane, gvanrossum, rhettinger, terry.reedy, serhiy.storchaka, Guido.van.Rossum, iritkatriel |
| 2021-08-28 06:36:16 | methane | set | messageid: <1630132576.34.0.180017366522.issue36521@roundup.psfhosted.org> |
| 2021-08-28 06:36:16 | methane | link | issue36521 messages |
| 2021-08-28 06:36:16 | methane | create | |