Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
f117d871
Unverified
Kaydet (Commit)
f117d871
authored
Tem 10, 2019
tarafından
Stefan Krah
Kaydeden (comit)
GitHub
Tem 10, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Rename memory.c to mpalloc.c for consistency with the header file. (#14687)
üst
4749dbe5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
4 deletions
+4
-4
README.txt
Modules/_decimal/libmpdec/README.txt
+1
-1
mpalloc.c
Modules/_decimal/libmpdec/mpalloc.c
+0
-0
_decimal.vcxproj
PCbuild/_decimal.vcxproj
+1
-1
_decimal.vcxproj.filters
PCbuild/_decimal.vcxproj.filters
+1
-1
setup.py
setup.py
+1
-1
No files found.
Modules/_decimal/libmpdec/README.txt
Dosyayı görüntüle @
f117d871
...
@@ -20,7 +20,7 @@ Files required for the Python _decimal module
...
@@ -20,7 +20,7 @@ Files required for the Python _decimal module
context.c -> Context functions.
context.c -> Context functions.
io.{c,h} -> Conversions between mpd_t and ASCII strings,
io.{c,h} -> Conversions between mpd_t and ASCII strings,
mpd_t formatting (allows UTF-8 fill character).
mpd_t formatting (allows UTF-8 fill character).
m
emory.{c,h}
-> Allocation handlers with overflow detection
m
palloc.{c,h}
-> Allocation handlers with overflow detection
and functions for switching between static
and functions for switching between static
and dynamic mpd_t.
and dynamic mpd_t.
mpdecimal.{c,h} -> All (quiet) functions of the specification.
mpdecimal.{c,h} -> All (quiet) functions of the specification.
...
...
Modules/_decimal/libmpdec/m
emory
.c
→
Modules/_decimal/libmpdec/m
palloc
.c
Dosyayı görüntüle @
f117d871
File moved
PCbuild/_decimal.vcxproj
Dosyayı görüntüle @
f117d871
...
@@ -131,7 +131,7 @@
...
@@ -131,7 +131,7 @@
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fnt.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fnt.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fourstep.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fourstep.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\io.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\io.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
emory
.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
palloc
.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\mpdecimal.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\mpdecimal.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\numbertheory.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\numbertheory.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\sixstep.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\sixstep.c"
/>
...
...
PCbuild/_decimal.vcxproj.filters
Dosyayı görüntüle @
f117d871
...
@@ -92,7 +92,7 @@
...
@@ -92,7 +92,7 @@
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\io.c"
>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\io.c"
>
<Filter>
Source Files
</Filter>
<Filter>
Source Files
</Filter>
</ClCompile>
</ClCompile>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
emory
.c"
>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
palloc
.c"
>
<Filter>
Source Files
</Filter>
<Filter>
Source Files
</Filter>
</ClCompile>
</ClCompile>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\mpdecimal.c"
>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\mpdecimal.c"
>
...
...
setup.py
Dosyayı görüntüle @
f117d871
...
@@ -2095,7 +2095,7 @@ class PyBuildExt(build_ext):
...
@@ -2095,7 +2095,7 @@ class PyBuildExt(build_ext):
'_decimal/libmpdec/fnt.c'
,
'_decimal/libmpdec/fnt.c'
,
'_decimal/libmpdec/fourstep.c'
,
'_decimal/libmpdec/fourstep.c'
,
'_decimal/libmpdec/io.c'
,
'_decimal/libmpdec/io.c'
,
'_decimal/libmpdec/m
emory
.c'
,
'_decimal/libmpdec/m
palloc
.c'
,
'_decimal/libmpdec/mpdecimal.c'
,
'_decimal/libmpdec/mpdecimal.c'
,
'_decimal/libmpdec/numbertheory.c'
,
'_decimal/libmpdec/numbertheory.c'
,
'_decimal/libmpdec/sixstep.c'
,
'_decimal/libmpdec/sixstep.c'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment