Skip to content

Commit 9a1f0d0

Browse files
authored
Update README.md rephrased intro
Signed-off-by: myteron <[email protected]>
1 parent bb895ff commit 9a1f0d0

File tree

1 file changed

+5
-1
lines changed
  • docs/Secure-Coding-Guide-for-Python/CWE-682/CWE-191

1 file changed

+5
-1
lines changed

docs/Secure-Coding-Guide-for-Python/CWE-682/CWE-191/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Ensure that integer overflow is properly handled in order to avoid unexpected be
44

55
- Built-in types such as `int`, `float`, or `complex` [[Python 2024]](https://docs.python.org/3.9/library/stdtypes.html). These types are provided by classes and are protected against overflows.
66

7-
- Primitive types such as `numpy`, `time`, or `ctype` share issues known from `C` , or `C++` and are often used to interact with the operating system, or for efficiency. Developers should follow the `C` guidelines for rules to follow.
7+
- Primitive types share issues known from `C` , or `C++` and appear in `Python` to:
8+
- interact with the operating system modules such as `time`.
9+
- to be memory efficiency using modules such as `numpy` or `ctype`.
10+
11+
Developers should follow the `C` guidelines when using or interacting wth `C` type variables.
812

913
## Non-Compliant Code Example
1014

0 commit comments

Comments
 (0)