回答編集履歴

2

2022/10/25 12:54

投稿

melian
melian

スコア21118

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

2022/10/25 12:45

投稿

melian
melian

スコア21118

test CHANGED
@@ -1,6 +1,6 @@
1
1
  Python における、(最小単位の) int 型オブジェクトの実装は以下になります。
2
2
 
3
- [cpython/object.h at main · python/cpython](https://github.com/python/cpython/blob/main/Include/object.h#L79)
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