[issue31904] Python should support VxWorks RTOS

2020-12-14 Thread dimitri.wei
Change by dimitri.wei : -- nosy: -wlf100220 ___ Python tracker <https://bugs.python.org/issue31904> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31904] Python should support VxWorks RTOS

2020-12-09 Thread dimitri.wei
dimitri.wei added the comment: test comment -- components: +Build -Cross-Build nosy: +wlf100220 ___ Python tracker <https://bugs.python.org/issue31904> ___ ___

[issue42610] Get the type from a variable

2020-12-09 Thread dimitri.wei
Change by dimitri.wei : -- title: Get the type from a var -> Get the type from a variable ___ Python tracker <https://bugs.python.org/issue42610> ___ ___ Py

[issue42610] Get the type from a var

2020-12-09 Thread dimitri.wei
Change by dimitri.wei : -- title: Get the type of from a var -> Get the type from a var ___ Python tracker <https://bugs.python.org/issue42610> ___ ___ Python-

[issue42610] Get the type of from a var

2020-12-09 Thread dimitri.wei
Change by dimitri.wei : -- components: -Demos and Tools ___ Python tracker <https://bugs.python.org/issue42610> ___ ___ Python-bugs-list mailing list Unsub

[issue42610] Get the type of from a var

2020-12-09 Thread dimitri.wei
New submission from dimitri.wei : **Feature** A similar feature in typescript ```ts const foo: number = 1 type Foo = typeof foo // type Foo = number function bar(x: string): void { } type Bar = typeof bar // type Bar = (x: string) => void ``` **Pitch** The expected way in future pyt