Skip to content
This repository has been archived by the owner on Oct 6, 2020. It is now read-only.

Latest commit

 

History

History
27 lines (16 loc) · 428 Bytes

DUO118.md

File metadata and controls

27 lines (16 loc) · 428 Bytes

DUO118

This linter looks for use of the gl module.

From the documentation:

Some illegal calls to the GL library cause the Python interpreter to dump core. In particular, the use of most GL calls is unsafe before the first window is opened.

Problematic code

import gl

Correct code

None

Rationale

Crashes can lead to insecure behavior so we should avoid this module.

Exceptions

None