回答編集履歴
2
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Python における、(最小単位の) int 型オブジェクトの
|
1
|
+
Python における、(最小単位の) int 型オブジェクトの定義は以下になります。
|
2
2
|
|
3
3
|
[cpython/longintrepr.h at main · python/cpython](https://github.com/python/cpython/blob/main/Include/cpython/longintrepr.h#L79)
|
4
4
|
```c
|
1
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Python における、(最小単位の) int 型オブジェクトの実装は以下になります。
|
2
2
|
|
3
|
-
[cpython/o
|
3
|
+
[cpython/longintrepr.h at main · python/cpython](https://github.com/python/cpython/blob/main/Include/cpython/longintrepr.h#L79)
|
4
4
|
```c
|
5
5
|
struct _longobject {
|
6
6
|
PyObject_VAR_HEAD
|