Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 329 Bytes

bad-open-mode.md

File metadata and controls

11 lines (6 loc) · 329 Bytes

Pattern: Bad open mode

Issue: -

Description

Used when open() function is called with unsupported mode. Python supports r, w, a[, x] modes with b, +, and U (only with r) options.

Further Reading