facebookincubator / cinder

Cinder is Meta's internal performance-oriented production version of CPython.
https://trycinder.com
Other
3.43k stars 122 forks source link

jit-list wildcards: support "name.*" for <qualname> #24

Open belm0 opened 3 years ago

belm0 commented 3 years ago

Currently there doesn't seem to be a way to include all methods of a certain class.

possible now: include everything in a module (<module>:*), include methods of any class with a certain name (<module>:*.__init__).

not possible now: <module>:MyClass.*