bpo-34197: Make _csv.Dialect attributes booleans. by serhiy-storchaka · Pull Request #8440 · python/cpython

@serhiy-storchaka

@serhiy-storchaka

Attributes skipinitialspace, doublequote and strict are now
booleans instead of integers 0 or 1.

methane


#include "Python.h"
#include "structmember.h"
#include <stdbool.h>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

T_BOOL requires char. I have doubts that _Bool has always the same size and alignment as char.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make sense.

methane


#include "Python.h"
#include "structmember.h"
#include <stdbool.h>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

make sense.