Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f117d871
Commit
f117d871
authored
Jul 10, 2019
by
Stefan Krah
Committed by
GitHub
Jul 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename memory.c to mpalloc.c for consistency with the header file. (#14687)
parent
4749dbe5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
4 deletions
+4
-4
Modules/_decimal/libmpdec/README.txt
Modules/_decimal/libmpdec/README.txt
+1
-1
Modules/_decimal/libmpdec/mpalloc.c
Modules/_decimal/libmpdec/mpalloc.c
+0
-0
PCbuild/_decimal.vcxproj
PCbuild/_decimal.vcxproj
+1
-1
PCbuild/_decimal.vcxproj.filters
PCbuild/_decimal.vcxproj.filters
+1
-1
setup.py
setup.py
+1
-1
No files found.
Modules/_decimal/libmpdec/README.txt
View file @
f117d871
...
...
@@ -20,7 +20,7 @@ Files required for the Python _decimal module
context.c -> Context functions.
io.{c,h} -> Conversions between mpd_t and ASCII strings,
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 dynamic mpd_t.
mpdecimal.{c,h} -> All (quiet) functions of the specification.
...
...
Modules/_decimal/libmpdec/m
emory
.c
→
Modules/_decimal/libmpdec/m
palloc
.c
View file @
f117d871
File moved
PCbuild/_decimal.vcxproj
View file @
f117d871
...
...
@@ -131,7 +131,7 @@
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fnt.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\fourstep.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\numbertheory.c"
/>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\sixstep.c"
/>
...
...
PCbuild/_decimal.vcxproj.filters
View file @
f117d871
...
...
@@ -92,7 +92,7 @@
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\io.c"
>
<Filter>
Source Files
</Filter>
</ClCompile>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
emory
.c"
>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\m
palloc
.c"
>
<Filter>
Source Files
</Filter>
</ClCompile>
<ClCompile
Include=
"..\Modules\_decimal\libmpdec\mpdecimal.c"
>
...
...
setup.py
View file @
f117d871
...
...
@@ -2095,7 +2095,7 @@ class PyBuildExt(build_ext):
'_decimal/libmpdec/fnt.c'
,
'_decimal/libmpdec/fourstep.c'
,
'_decimal/libmpdec/io.c'
,
'_decimal/libmpdec/m
emory
.c'
,
'_decimal/libmpdec/m
palloc
.c'
,
'_decimal/libmpdec/mpdecimal.c'
,
'_decimal/libmpdec/numbertheory.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