mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview.
Also updates a few internal implementations of the same thing to use the new built-in code. Contributed by Arnon Yaari.
This commit is contained in:
parent
644adc6ada
commit
8cb6569fe1
15 changed files with 112 additions and 64 deletions
|
@ -147,6 +147,7 @@
|
|||
<ClInclude Include="..\Include\pystate.h" />
|
||||
<ClInclude Include="..\Include\pystrcmp.h" />
|
||||
<ClInclude Include="..\Include\pystrtod.h" />
|
||||
<ClInclude Include="..\Include\pystrhex.h" />
|
||||
<ClInclude Include="..\Include\dtoa.h" />
|
||||
<ClInclude Include="..\Include\Python-ast.h" />
|
||||
<ClInclude Include="..\Include\Python.h" />
|
||||
|
@ -376,6 +377,7 @@
|
|||
<ClCompile Include="..\Python\pytime.c" />
|
||||
<ClCompile Include="..\Python\pystate.c" />
|
||||
<ClCompile Include="..\Python\pystrcmp.c" />
|
||||
<ClCompile Include="..\Python\pystrhex.c" />
|
||||
<ClCompile Include="..\Python\pystrtod.c" />
|
||||
<ClCompile Include="..\Python\dtoa.c" />
|
||||
<ClCompile Include="..\Python\Python-ast.c" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue