Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
6d4df11
Makefile: Allow setting PREFIX from the command line
smurfix Feb 23, 2019
90105fa
Implement platform.python_implementation()
smurfix Feb 23, 2019
a891c99
New module: collections.abc
smurfix Feb 23, 2019
7bd5d3d
Basic "attrs" module
smurfix Feb 24, 2019
641fd9f
add outcome
smurfix Feb 24, 2019
14a9f90
async_generator
smurfix Feb 24, 2019
61d0f9a
sortedcontainers port
smurfix Feb 24, 2019
9a6f597
sortedcontainers 2
smurfix Feb 24, 2019
8944296
unittest: implement assertRaisesRegex
smurfix Feb 24, 2019
e5adaf5
do a real import of collections.abc
smurfix Feb 24, 2019
0e201a9
uptick
smurfix Feb 24, 2019
dba4a26
Add deque.clear()
smurfix Feb 24, 2019
89e5836
immutables port to micropython
smurfix Feb 24, 2019
2a103e8
contextvars port
smurfix Feb 24, 2019
a2716a3
more stuff in collections
smurfix Feb 24, 2019
46b6833
Make functools.partial a proper class
smurfix Feb 24, 2019
d96c01f
add contextvars tests
smurfix Feb 24, 2019
98a7dc7
more operators
smurfix Feb 24, 2019
38ce917
random.shuffle: no-op for <2 elements
smurfix Feb 24, 2019
38db5d2
Add "uniform" as a (somewhat-broken) alias of randrange
smurfix Feb 24, 2019
58d4417
Add a random.Random() dummy object
smurfix Feb 24, 2019
7b0f066
reprlib (im)ported
smurfix Feb 24, 2019
83c3124
signal: add a default_int_handler
smurfix Feb 24, 2019
0077ba0
signal: implement getsignal
smurfix Feb 24, 2019
762222f
comment out non-working (so far) contextvars tests
smurfix Feb 25, 2019
ff961c0
There is no __new__
smurfix Feb 25, 2019
74cae51
unittest: add assertNotIn
smurfix Feb 25, 2019
a106860
fix sortedcontainers
smurfix May 31, 2019
399dc54
no "const" on non-integers
smurfix Jan 21, 2020
43cd3f1
Add dummy AbstractContextManager class
smurfix May 10, 2021
178ef85
contextlib: add async versions
smurfix May 10, 2021
4e555cc
Add sniffio
smurfix May 10, 2021
8210ce5
add default_factory to attrs stub
smurfix May 10, 2021
ef19f94
Add a stub "dataclasses"
smurfix May 10, 2021
5e14a37
defaultdict: add len() and bool()
smurfix May 10, 2021
e0aaf12
Workaround: attributes might not be modifiable
smurfix May 10, 2021
9a9e529
add ELOOP for compatiblity
smurfix May 10, 2021
afaae75
minimal implementation of "import_module"
smurfix May 10, 2021
1fdb4ea
Alias iscoroutine[function] to isgenerator*
smurfix May 10, 2021
17c980a
use ipaddress module from cpython
smurfix May 10, 2021
8bd5b40
dummies for GenericAlias and MappingProxyType
smurfix May 10, 2021
d2d2780
add PathLike abstract class
smurfix May 10, 2021
c71dcbb
os.env: don't subclass dict
smurfix May 10, 2021
b2750ec
pathlib: copy from cpython 3.9
smurfix May 10, 2021
83c5065
Add random.random()
smurfix May 10, 2021
75eecab
don't use const() for non-integers
smurfix May 10, 2021
884f80d
sys: simply import usys
smurfix May 10, 2021
eb55796
typing: "implement" a heap of subscriptable classes
smurfix May 10, 2021
101f735
added dummies for Weak*Dictionary and WeakSet
smurfix May 10, 2021
b7e8b99
datetime: Fix TZ object initialization
smurfix May 18, 2021
8f46fa3
os: workaround when `bytestring_at` is unavailable
smurfix May 18, 2021
55d5a17
Rename umqtt.simple to just umqtt
smurfix May 18, 2021
e78e454
fix dep
smurfix May 23, 2021
6d84ba2
fix os.environ
smurfix May 23, 2021
5b613a3
missing import
smurfix Jun 27, 2022
d47e133
missing import
smurfix Jun 27, 2022
615050e
make shorter!
smurfix Jun 27, 2022
6e101a9
sched stuff
smurfix Jun 27, 2022
2cecf23
Fix "outcome" port
smurfix Jul 18, 2022
2acb3df
Formatting woes.
smurfix Mar 16, 2023
df4f856
uasyncio.queues: Use taskqueues instead of busy-waiting
smurfix Apr 12, 2023
f9739fc
Don't talk about "yield from"
smurfix Apr 12, 2023
33382b6
Do the easy test first
smurfix Apr 12, 2023
7fa747a
Merge 'pycopy/master' into main
smurfix Apr 12, 2023
a7d0f05
simplified pathlib
smurfix Apr 12, 2023
09bd9f2
more linting
smurfix Apr 21, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PREFIX = ~/.micropython/lib
PREFIX ?= ~/.micropython/lib

all:

Expand Down
Loading