Skip to content

Commit bc760dd

Browse files
committed
WIP: complete manual inspection of all significant changes
1 parent 2809b4f commit bc760dd

32 files changed

+151
-528
lines changed

docs/library/array.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Classes
1616
.. class:: array.array(typecode, [iterable])
1717

1818
Create array with elements of given type. Initial contents of the
19-
array are given by *iterable*. If it is not provided, an empty
19+
array are given by an `iterable`. If it is not provided, an empty
2020
array is created.
2121

2222
.. method:: append(val)
2323

24-
Append new element *val* to the end of array, growing it.
24+
Append new element ``val`` to the end of array, growing it.
2525

2626
.. method:: extend(iterable)
2727

28-
Append new elements as contained in *iterable* to the end of
28+
Append new elements as contained in `iterable` to the end of
2929
array, growing it.

docs/library/ujson.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ Functions
1616

1717
.. function:: dump(obj, stream)
1818

19-
Serialise *obj* to a JSON string, writing it to the given *stream*.
19+
Serialise ``obj`` to a JSON string, writing it to the given *stream*.
2020

2121
.. function:: dumps(obj)
2222

23-
Return *obj* represented as a JSON string.
23+
Return ``obj`` represented as a JSON string.
2424

2525
.. function:: load(stream)
2626

27-
Parse the given *stream*, interpreting it as a JSON string and
27+
Parse the given ``stream``, interpreting it as a JSON string and
2828
deserialising the data to a Python object. The resulting object is
2929
returned.
3030

3131
Parsing continues until end-of-file is encountered.
32-
A :exc:`ValueError` is raised if the data in *stream* is not correctly formed.
32+
A :exc:`ValueError` is raised if the data in ``stream`` is not correctly formed.
3333

3434
.. function:: loads(str)
3535

docs/library/ure.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ Functions
6969
.. data:: DEBUG
7070

7171
Flag value, display debug information about compiled expression.
72-
(Availability depends on `MicroPython port`.)
7372

7473

7574
.. _regex:

docs/reference/packages.rst

Lines changed: 0 additions & 312 deletions
This file was deleted.

extmod/lwip-include/lwipopts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ typedef uint32_t sys_prot_t;
2323
#define LWIP_NETCONN 0
2424
#define LWIP_SOCKET 0
2525

26-
#ifdef MICROPY_PY_LWIP_SLIP
26+
#if MICROPY_PY_LWIP_SLIP
2727
#define LWIP_HAVE_SLIPIF 1
2828
#endif
2929

0 commit comments

Comments
 (0)