Skip to content

Commit a37ab53

Browse files
committed
[mypyc] Update the docs some
1 parent c24edc3 commit a37ab53

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

mypyc/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ semantics. This means (among some other things):
2121

2222
* Instance attributes won't fall back to class attributes if undefined
2323

24-
* Metaclasses not supported
25-
2624
* Also there are still a bunch of bad bugs and unsupported features :)
2725

2826
Compiled modules can import arbitrary Python modules, and compiled modules
@@ -114,14 +112,13 @@ These are the current planned major milestones:
114112

115113
6. [DONE] Release a version of mypy that includes a compiled mypy.
116114

117-
7.
115+
7.
118116
1. More feature/compatibility work. (100% compatibility with Python is distinctly
119117
an anti-goal, but more than we have now is a good idea.)
120-
2. Support compiling Black, which is a prominent tool that could benefit
118+
2. [DONE] Support compiling Black, which is a prominent tool that could benefit
121119
and has maintainer buy-in.
122120
(Let us know if you maintain another Python tool or library and are
123121
interested in working with us on this!)
124-
125122
3. More optimization! Code size reductions in particular are likely to
126123
be valuable and will speed up mypyc compilation.
127124

mypyc/doc/dev-intro.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,8 @@ message.
88

99
Here are some major things that aren't supported in compiled code:
1010

11-
* Functions that take `*args` or `**kwargs`
1211
* Many dunder methods (only some work, such as `__init__` and `__eq__`)
1312
* Monkey patching compiled functions or classes
14-
* Metaclasses
15-
* Class decorators
16-
* Async features
17-
* Generally Python 3.5+ only features
1813
* General multiple inheritance (a limited form is supported)
1914
* Named tuple defined using the class-based syntax
2015
* Defining protocols

0 commit comments

Comments
 (0)