diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-03 15:05:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-03 15:05:46 (GMT) |
commit | 37dc5f85b82292787092dd61b937ee616a2d93b0 (patch) | |
tree | 73d2853fc8ee25cbd3e43baa8e2f46a409f6c88f /PCbuild | |
parent | 0f535013c54955164388d3bf11858b9e42bed39e (diff) | |
download | cpython-37dc5f85b82292787092dd61b937ee616a2d93b0.zip cpython-37dc5f85b82292787092dd61b937ee616a2d93b0.tar.gz cpython-37dc5f85b82292787092dd61b937ee616a2d93b0.tar.bz2 |
Issue #5863: Rewrite BZ2File in pure Python, and allow it to accept
file-like objects using a new `fileobj` constructor argument. Patch by
Nadeem Vawda.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/_bz2.vcproj (renamed from PCbuild/bz2.vcproj) | 4 | ||||
-rw-r--r-- | PCbuild/pcbuild.sln | 2 | ||||
-rw-r--r-- | PCbuild/readme.txt | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/PCbuild/bz2.vcproj b/PCbuild/_bz2.vcproj index 035736e..e6b9c88 100644 --- a/PCbuild/bz2.vcproj +++ b/PCbuild/_bz2.vcproj @@ -2,7 +2,7 @@ <VisualStudioProject
ProjectType="Visual C++"
Version="9,00"
- Name="bz2"
+ Name="_bz2"
ProjectGUID="{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}"
RootNamespace="bz2"
Keyword="Win32Proj"
@@ -527,7 +527,7 @@ Name="Source Files"
>
<File
- RelativePath="..\Modules\bz2module.c"
+ RelativePath="..\Modules\_bz2module.c"
>
</File>
</Filter>
diff --git a/PCbuild/pcbuild.sln b/PCbuild/pcbuild.sln index 1de4ea1..ed3a7a0 100644 --- a/PCbuild/pcbuild.sln +++ b/PCbuild/pcbuild.sln @@ -87,7 +87,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_tkinter", "_tkinter.vcproj {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}
EndProjectSection
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bz2", "bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_bz2", "_bz2.vcproj", "{73FCD2BD-F133-46B7-8EC1-144CD82A59D5}"
ProjectSection(ProjectDependencies) = postProject
{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26} = {CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}
EndProjectSection
diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index af432c4..11ab127 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -112,9 +112,9 @@ _tkinter pre-built Tcl/Tk in either ..\..\tcltk for 32-bit or ..\..\tcltk64 for 64-bit (relative to this directory). See below for instructions to build Tcl/Tk. -bz2 - Python wrapper for the libbz2 compression library. Homepage - http://sources.redhat.com/bzip2/ +_bz2 + Python wrapper for the libbzip2 compression library. Homepage + http://www.bzip.org/ Download the source from the python.org copy into the dist directory: |