@@ -1139,7 +1139,7 @@ typedef double mp_float_t;
1139
1139
#define MICROPY_PY_ATTRTUPLE (1)
1140
1140
#endif
1141
1141
1142
- // Whether to provide "collections " module
1142
+ // Whether to provide "ucollections " module
1143
1143
#ifndef MICROPY_PY_COLLECTIONS
1144
1144
#define MICROPY_PY_COLLECTIONS (1)
1145
1145
#endif
@@ -1149,7 +1149,7 @@ typedef double mp_float_t;
1149
1149
#define MICROPY_PY_COLLECTIONS_DEQUE (0)
1150
1150
#endif
1151
1151
1152
- // Whether to provide "collections .OrderedDict" type
1152
+ // Whether to provide "ucollections .OrderedDict" type
1153
1153
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
1154
1154
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (0)
1155
1155
#endif
@@ -1214,12 +1214,12 @@ typedef double mp_float_t;
1214
1214
#define MICROPY_PY_GC_COLLECT_RETVAL (0)
1215
1215
#endif
1216
1216
1217
- // Whether to provide "io " module
1217
+ // Whether to provide "uio " module
1218
1218
#ifndef MICROPY_PY_IO
1219
1219
#define MICROPY_PY_IO (1)
1220
1220
#endif
1221
1221
1222
- // Whether to provide "io .IOBase" class to support user streams
1222
+ // Whether to provide "uio .IOBase" class to support user streams
1223
1223
#ifndef MICROPY_PY_IO_IOBASE
1224
1224
#define MICROPY_PY_IO_IOBASE (0)
1225
1225
#endif
@@ -1235,73 +1235,73 @@ typedef double mp_float_t;
1235
1235
#define MICROPY_PY_IO_RESOURCE_STREAM (0)
1236
1236
#endif
1237
1237
1238
- // Whether to provide "io .FileIO" class
1238
+ // Whether to provide "uio .FileIO" class
1239
1239
#ifndef MICROPY_PY_IO_FILEIO
1240
1240
#define MICROPY_PY_IO_FILEIO (0)
1241
1241
#endif
1242
1242
1243
- // Whether to provide "io .BytesIO" class
1243
+ // Whether to provide "uio .BytesIO" class
1244
1244
#ifndef MICROPY_PY_IO_BYTESIO
1245
1245
#define MICROPY_PY_IO_BYTESIO (1)
1246
1246
#endif
1247
1247
1248
- // Whether to provide "io .BufferedWriter" class
1248
+ // Whether to provide "uio .BufferedWriter" class
1249
1249
#ifndef MICROPY_PY_IO_BUFFEREDWRITER
1250
1250
#define MICROPY_PY_IO_BUFFEREDWRITER (0)
1251
1251
#endif
1252
1252
1253
- // Whether to provide "struct " module
1253
+ // Whether to provide "ustruct " module
1254
1254
#ifndef MICROPY_PY_STRUCT
1255
1255
#define MICROPY_PY_STRUCT (1)
1256
1256
#endif
1257
1257
1258
- // Whether to provide "sys " module
1258
+ // Whether to provide "usys " module
1259
1259
#ifndef MICROPY_PY_SYS
1260
1260
#define MICROPY_PY_SYS (1)
1261
1261
#endif
1262
1262
1263
- // Whether to provide "sys .maxsize" constant
1263
+ // Whether to provide "usys .maxsize" constant
1264
1264
#ifndef MICROPY_PY_SYS_MAXSIZE
1265
1265
#define MICROPY_PY_SYS_MAXSIZE (0)
1266
1266
#endif
1267
1267
1268
- // Whether to provide "sys .modules" dictionary
1268
+ // Whether to provide "usys .modules" dictionary
1269
1269
#ifndef MICROPY_PY_SYS_MODULES
1270
1270
#define MICROPY_PY_SYS_MODULES (1)
1271
1271
#endif
1272
1272
1273
- // Whether to provide "sys .exc_info" function
1273
+ // Whether to provide "usys .exc_info" function
1274
1274
// Avoid enabling this, this function is Python2 heritage
1275
1275
#ifndef MICROPY_PY_SYS_EXC_INFO
1276
1276
#define MICROPY_PY_SYS_EXC_INFO (0)
1277
1277
#endif
1278
1278
1279
- // Whether to provide "sys .exit" function
1279
+ // Whether to provide "usys .exit" function
1280
1280
#ifndef MICROPY_PY_SYS_EXIT
1281
1281
#define MICROPY_PY_SYS_EXIT (1)
1282
1282
#endif
1283
1283
1284
- // Whether to provide "sys .atexit" function (MicroPython extension)
1284
+ // Whether to provide "usys .atexit" function (MicroPython extension)
1285
1285
#ifndef MICROPY_PY_SYS_ATEXIT
1286
1286
#define MICROPY_PY_SYS_ATEXIT (0)
1287
1287
#endif
1288
1288
1289
- // Whether to provide "sys .settrace" function
1289
+ // Whether to provide "usys .settrace" function
1290
1290
#ifndef MICROPY_PY_SYS_SETTRACE
1291
1291
#define MICROPY_PY_SYS_SETTRACE (0)
1292
1292
#endif
1293
1293
1294
- // Whether to provide "sys .getsizeof" function
1294
+ // Whether to provide "usys .getsizeof" function
1295
1295
#ifndef MICROPY_PY_SYS_GETSIZEOF
1296
1296
#define MICROPY_PY_SYS_GETSIZEOF (0)
1297
1297
#endif
1298
1298
1299
- // Whether to provide sys .{stdin,stdout,stderr} objects
1299
+ // Whether to provide usys .{stdin,stdout,stderr} objects
1300
1300
#ifndef MICROPY_PY_SYS_STDFILES
1301
1301
#define MICROPY_PY_SYS_STDFILES (0)
1302
1302
#endif
1303
1303
1304
- // Whether to provide sys .{stdin,stdout,stderr}.buffer object
1304
+ // Whether to provide usys .{stdin,stdout,stderr}.buffer object
1305
1305
// This is implemented per-port
1306
1306
#ifndef MICROPY_PY_SYS_STDIO_BUFFER
1307
1307
#define MICROPY_PY_SYS_STDIO_BUFFER (0)
0 commit comments