@@ -220,11 +220,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
220
220
221
221
static final StructSequence .BuiltinTypeDescriptor VERSION_INFO_DESC = new StructSequence .BuiltinTypeDescriptor (
222
222
PythonBuiltinClassType .PVersionInfo ,
223
- // @formatter:off The formatter joins these lines making it less readable
224
- "sys.version_info\n " +
225
- "\n " +
226
- "Version information as a named tuple." ,
227
- // @formatter:on
223
+ // @formatter:off The formatter joins these lines making it less readable
224
+ "sys.version_info\n " +
225
+ "\n " +
226
+ "Version information as a named tuple." ,
227
+ // @formatter:on
228
228
5 ,
229
229
new String []{
230
230
"major" , "minor" , "micro" ,
@@ -236,11 +236,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
236
236
237
237
static final StructSequence .BuiltinTypeDescriptor FLAGS_DESC = new StructSequence .BuiltinTypeDescriptor (
238
238
PythonBuiltinClassType .PFlags ,
239
- // @formatter:off The formatter joins these lines making it less readable
240
- "sys.flags\n " +
241
- "\n " +
242
- "Flags provided through command line arguments or environment vars." ,
243
- // @formatter:on
239
+ // @formatter:off The formatter joins these lines making it less readable
240
+ "sys.flags\n " +
241
+ "\n " +
242
+ "Flags provided through command line arguments or environment vars." ,
243
+ // @formatter:on
244
244
15 ,
245
245
new String []{
246
246
"debug" , "inspect" , "interactive" , "optimize" , "dont_write_bytecode" ,
@@ -256,13 +256,13 @@ public class SysModuleBuiltins extends PythonBuiltins {
256
256
257
257
static final StructSequence .BuiltinTypeDescriptor FLOAT_INFO_DESC = new StructSequence .BuiltinTypeDescriptor (
258
258
PythonBuiltinClassType .PFloatInfo ,
259
- // @formatter:off The formatter joins these lines making it less readable
260
- "sys.float_info\n " +
261
- "\n " +
262
- "A named tuple holding information about the float type. It contains low level\n " +
263
- "information about the precision and internal representation. Please study\n " +
264
- "your system's :file:`float.h` for more information." ,
265
- // @formatter:on
259
+ // @formatter:off The formatter joins these lines making it less readable
260
+ "sys.float_info\n " +
261
+ "\n " +
262
+ "A named tuple holding information about the float type. It contains low level\n " +
263
+ "information about the precision and internal representation. Please study\n " +
264
+ "your system's :file:`float.h` for more information." ,
265
+ // @formatter:on
266
266
11 ,
267
267
new String []{
268
268
"max" ,
@@ -291,12 +291,12 @@ public class SysModuleBuiltins extends PythonBuiltins {
291
291
292
292
static final StructSequence .BuiltinTypeDescriptor INT_INFO_DESC = new StructSequence .BuiltinTypeDescriptor (
293
293
PythonBuiltinClassType .PIntInfo ,
294
- // @formatter:off The formatter joins these lines making it less readable
295
- "sys.int_info\n " +
296
- "\n " +
297
- "A named tuple that holds information about Python's\n " +
298
- "internal representation of integers. The attributes are read only." ,
299
- // @formatter:on
294
+ // @formatter:off The formatter joins these lines making it less readable
295
+ "sys.int_info\n " +
296
+ "\n " +
297
+ "A named tuple that holds information about Python's\n " +
298
+ "internal representation of integers. The attributes are read only." ,
299
+ // @formatter:on
300
300
2 ,
301
301
new String []{
302
302
"bits_per_digit" , "sizeof_digit" },
@@ -305,12 +305,12 @@ public class SysModuleBuiltins extends PythonBuiltins {
305
305
306
306
static final StructSequence .BuiltinTypeDescriptor HASH_INFO_DESC = new StructSequence .BuiltinTypeDescriptor (
307
307
PythonBuiltinClassType .PHashInfo ,
308
- // @formatter:off The formatter joins these lines making it less readable
309
- "hash_info\n " +
310
- "\n " +
311
- "A named tuple providing parameters used for computing\n " +
312
- "hashes. The attributes are read only." ,
313
- // @formatter:on
308
+ // @formatter:off The formatter joins these lines making it less readable
309
+ "hash_info\n " +
310
+ "\n " +
311
+ "A named tuple providing parameters used for computing\n " +
312
+ "hashes. The attributes are read only." ,
313
+ // @formatter:on
314
314
9 ,
315
315
new String []{
316
316
"width" , "modulus" , "inf" , "nan" , "imag" , "algorithm" , "hash_bits" ,
@@ -328,11 +328,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
328
328
329
329
static final StructSequence .BuiltinTypeDescriptor THREAD_INFO_DESC = new StructSequence .BuiltinTypeDescriptor (
330
330
PythonBuiltinClassType .PThreadInfo ,
331
- // @formatter:off The formatter joins these lines making it less readable
332
- "sys.thread_info\n " +
333
- "\n " +
334
- "A named tuple holding information about the thread implementation." ,
335
- // @formatter:on
331
+ // @formatter:off The formatter joins these lines making it less readable
332
+ "sys.thread_info\n " +
333
+ "\n " +
334
+ "A named tuple holding information about the thread implementation." ,
335
+ // @formatter:on
336
336
3 ,
337
337
new String []{
338
338
"name" , "lock" , "version" },
@@ -342,11 +342,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
342
342
343
343
public static final StructSequence .BuiltinTypeDescriptor UNRAISABLEHOOK_ARGS_DESC = new StructSequence .BuiltinTypeDescriptor (
344
344
PythonBuiltinClassType .PUnraisableHookArgs ,
345
- // @formatter:off The formatter joins these lines making it less readable
346
- "UnraisableHookArgs\n " +
347
- "\n " +
348
- "Type used to pass arguments to sys.unraisablehook." ,
349
- // @formatter:on
345
+ // @formatter:off The formatter joins these lines making it less readable
346
+ "UnraisableHookArgs\n " +
347
+ "\n " +
348
+ "Type used to pass arguments to sys.unraisablehook." ,
349
+ // @formatter:on
350
350
5 ,
351
351
new String []{
352
352
"exc_type" , "exc_value" , "exc_traceback" ,
0 commit comments