Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
35dfa40
Add tests and implementation for ZoneInfo
pganssle May 4, 2020
93c03aa
Add tzdata to Travis requirements
pganssle May 8, 2020
45146f1
Deliberately break TZData tests to see who is skipping them
pganssle May 8, 2020
ea7afea
Add test requirements to Github Actions builds
pganssle May 8, 2020
b5de778
Add test dependencies to windows AP builds
pganssle May 8, 2020
6802178
Revert "Add test dependencies to windows AP builds"
pganssle May 8, 2020
9292b3c
Revert "Deliberately break TZData tests to see who is skipping them"
pganssle May 8, 2020
0cad151
fixup! Add tests and implementation for ZoneInfo
pganssle May 9, 2020
c12439b
fixup! Add tests and implementation for ZoneInfo
pganssle May 9, 2020
7fa32f2
fixup! Add tests and implementation for ZoneInfo
pganssle May 9, 2020
3e4d81d
fixup! Add tests and implementation for ZoneInfo
pganssle May 9, 2020
87d8c51
fixup! fixup! Add tests and implementation for ZoneInfo
pganssle May 9, 2020
2324a30
Fix member def for key
pganssle May 11, 2020
3c8427b
Fix refleak in error code
pganssle May 11, 2020
4f12629
Fix refleak on cache miss
pganssle May 11, 2020
88ae102
fixup! Add tests and implementation for ZoneInfo
pganssle May 11, 2020
9cc8073
Fix memory leak in zoneinfo_dealloc
pganssle May 11, 2020
3d30dcb
Fix refleak in fromutc
pganssle May 11, 2020
8159b90
Add smoke test that C and Python modules built
pganssle May 12, 2020
507f5c2
Add Windows build support
pganssle May 12, 2020
874dca0
fixup! Add Windows build support
pganssle May 12, 2020
44b3135
Revert "fixup! Add Windows build support"
pganssle May 12, 2020
d490586
fixup! Add Windows build support
pganssle May 12, 2020
d9fc16f
Remove __version__ from __dir__
pganssle May 12, 2020
07fc66d
Include all globals in __dir__
pganssle May 12, 2020
d55872c
fixup! Add Windows build support
pganssle May 12, 2020
d7996a6
Reduce indentation in _parse_python_tzpath
pganssle May 12, 2020
ddb8244
Add --with-tzpath to autoconf
pganssle May 11, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add Windows build support
This should improve support on Windows, including actually building the C
extension.
  • Loading branch information
pganssle committed May 12, 2020
commit 507f5c2e417bca46cf34f16cd2c48bf2eb0ea7f7
8 changes: 8 additions & 0 deletions PCbuild/lib.pyproj
Original file line number Diff line number Diff line change
Expand Up @@ -1396,6 +1396,10 @@
<Compile Include="test\test_zipimport.py" />
<Compile Include="test\test_zipimport_support.py" />
<Compile Include="test\test_zlib.py" />
<Compile Include="test\test_zoneinfo\__init__.py" />
<Compile Include="test\test_zoneinfo\__main__.py" />
<Compile Include="test\test_zoneinfo\_support.py" />
<Compile Include="test\test_zoneinfo\test_zoneinfo.py" />
<Compile Include="test\test__locale.py" />
<Compile Include="test\test__opcode.py" />
<Compile Include="test\test__osx_support.py" />
Expand Down Expand Up @@ -1563,6 +1567,10 @@
<Compile Include="xml\__init__.py" />
<Compile Include="zipapp.py" />
<Compile Include="zipfile.py" />
<Compile Include="zoneinfo\_common.py" />
<Compile Include="zoneinfo\__init__.py" />
<Compile Include="zoneinfo\_tzpath.py" />
<Compile Include="zoneinfo\_zoneinfo.py" />
<Compile Include="_bootlocale.py" />
<Compile Include="_collections_abc.py" />
<Compile Include="_compat_pickle.py" />
Expand Down
1 change: 1 addition & 0 deletions PCbuild/pythoncore.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@
<ClCompile Include="..\Modules\_tracemalloc.c" />
<ClCompile Include="..\Modules\timemodule.c" />
<ClCompile Include="..\Modules\xxsubtype.c" />
<ClCompile Include="..\Modules\zoneinfomodule.c" />
<ClCompile Include="..\Modules\_xxsubinterpretersmodule.c" />
<ClCompile Include="..\Modules\_io\fileio.c" />
<ClCompile Include="..\Modules\_io\bytesio.c" />
Expand Down
3 changes: 3 additions & 0 deletions PCbuild/pythoncore.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,9 @@
<ClCompile Include="..\Modules\zlibmodule.c">
<Filter>Modules</Filter>
</ClCompile>
<ClCompile Include="..\Modules\zoneinfomodule.c">
<Filter>Modules</Filter>
</ClCompile>
<ClCompile Include="..\Modules\_io\fileio.c">
<Filter>Modules\_io</Filter>
</ClCompile>
Expand Down