Skip to content

Commit 2cd98b2

Browse files
committed
SysModuleBuiltins style fixes
1 parent 573a7ba commit 2cd98b2

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/SysModuleBuiltins.java

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
220220

221221
static final StructSequence.BuiltinTypeDescriptor VERSION_INFO_DESC = new StructSequence.BuiltinTypeDescriptor(
222222
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
228228
5,
229229
new String[]{
230230
"major", "minor", "micro",
@@ -236,11 +236,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
236236

237237
static final StructSequence.BuiltinTypeDescriptor FLAGS_DESC = new StructSequence.BuiltinTypeDescriptor(
238238
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
244244
15,
245245
new String[]{
246246
"debug", "inspect", "interactive", "optimize", "dont_write_bytecode",
@@ -256,13 +256,13 @@ public class SysModuleBuiltins extends PythonBuiltins {
256256

257257
static final StructSequence.BuiltinTypeDescriptor FLOAT_INFO_DESC = new StructSequence.BuiltinTypeDescriptor(
258258
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
266266
11,
267267
new String[]{
268268
"max",
@@ -291,12 +291,12 @@ public class SysModuleBuiltins extends PythonBuiltins {
291291

292292
static final StructSequence.BuiltinTypeDescriptor INT_INFO_DESC = new StructSequence.BuiltinTypeDescriptor(
293293
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
300300
2,
301301
new String[]{
302302
"bits_per_digit", "sizeof_digit"},
@@ -305,12 +305,12 @@ public class SysModuleBuiltins extends PythonBuiltins {
305305

306306
static final StructSequence.BuiltinTypeDescriptor HASH_INFO_DESC = new StructSequence.BuiltinTypeDescriptor(
307307
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
314314
9,
315315
new String[]{
316316
"width", "modulus", "inf", "nan", "imag", "algorithm", "hash_bits",
@@ -328,11 +328,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
328328

329329
static final StructSequence.BuiltinTypeDescriptor THREAD_INFO_DESC = new StructSequence.BuiltinTypeDescriptor(
330330
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
336336
3,
337337
new String[]{
338338
"name", "lock", "version"},
@@ -342,11 +342,11 @@ public class SysModuleBuiltins extends PythonBuiltins {
342342

343343
public static final StructSequence.BuiltinTypeDescriptor UNRAISABLEHOOK_ARGS_DESC = new StructSequence.BuiltinTypeDescriptor(
344344
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
350350
5,
351351
new String[]{
352352
"exc_type", "exc_value", "exc_traceback",

0 commit comments

Comments
 (0)