List of commits:
Subject Hash Author Date (UTC)
Takes vcruntime140.dll from the correct source. (#679) 328612353266d86c248950a910efa869c8c9c087 Steve Dower 2017-03-16 17:19:18
bpo-29581: Make ABCMeta.__new__ pass **kwargs to type.__new__ (#527) bd583ef9857d99f9145ad0bb2c4424cc0baa63fc Nate 2017-03-15 18:39:22
Fix stderr bug in json.tool test (#346) b4e9087e7b77e8f76feac76f9c1ab21b49c0c766 Daniel Himmelstein 2017-03-15 14:31:06
bpo-29800: Fix crashes in partial.__repr__ if the keys of partial.keywords are not strings (#649) 6c3d5274687c97f9c13800ad50e73e15b54f629d Michael Seifert 2017-03-15 05:26:33
Use the default number of reviewers (3) for mention-bot (#667) 024b4fdc4a981ec9ec17f2e63124ec542eb728ff Donald Stufft 2017-03-14 22:20:55
bpo-29735: Optimize partial_call(): avoid tuple (#516) 0f7b0b397e12514ee213bc727c9939b66585cbe2 Victor Stinner 2017-03-14 20:37:20
Add ELLIPSIS and RARROW. Add tests (#666) d4914e9041cb9455592facba2a1afa6d905f1c01 Jim Fasarakis-Hilliard 2017-03-14 20:16:15
bpo-28810: Update lnotab_notes.txt (#665) 9135275cba680902e6caf29461f0423dc570190d Ivan Levkivskyi 2017-03-14 19:42:09
bpo-29592: site: skip abs_paths() when it's redundant (GH-167) 2e4e011795d26cab1a3843383d0539c12fea2458 INADA Naoki 2017-03-14 15:52:19
bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75) aa289a59ff6398110e1122877c073c9354ee53db INADA Naoki 2017-03-14 09:00:59
bpo-28856: Let %b format for bytes support objects that follow the buffer protocol (GH-546) 7e2a54cdd977078b40b82182e46b201f8163f659 Xiang Zhang 2017-03-14 07:07:15
ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652) 9e52c907b5511393ab7e44321e9521fe0967e34d Jelle Zijlstra 2017-03-13 02:51:27
fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653) 7bb6ac76b27efc7260b17b03362f60a4106a4805 Jelle Zijlstra 2017-03-13 02:19:00
bpo-29756: Improve documentation for list methods that compare items by equality (GH-572) b2d77175d1317494b4238b4e07426d310fbf1d19 Xiang Zhang 2017-03-13 02:09:16
bpo-29730: replace some calls to PyNumber_Check and improve some error messages (#650) 004251059b9c5e48d47cb30b94bcb92cb44d3adf Oren Milman 2017-03-12 22:37:05
Fix wrapping into StopIteration of return values in generators and coroutines (#644) b7c9150b68516878175e5373983189d6deea470c Yury Selivanov 2017-03-12 19:53:07
bpo-29742: asyncio get_extra_info() throws exception (#525) 2b27e2e6a35c3d3e369612b984017fe0d1bfcf0c Nikolay Kim 2017-03-12 19:23:30
bpo-28667: Fix a compile warning on FreeBSD when compare with FD_SETSIZE. (#501) 783d0c1a1c723733adcdf4249240246fc35a5bcb Serhiy Storchaka 2017-03-12 12:43:12
bpo-15695: Add PyAPI_FUNC() to _PyDict_SizeOf() declaration. (#639) bc44f045e6a801903bd7530a4fc5474e657832da Serhiy Storchaka 2017-03-12 12:15:54
bpo-26121: Revert to using the own implementations of lgamma and gamma on all platforms. (#637) 4125e5c60e24ffcff8031817dc60984335917f59 Serhiy Storchaka 2017-03-12 12:08:06
Commit 328612353266d86c248950a910efa869c8c9c087 - Takes vcruntime140.dll from the correct source. (#679)
Author: Steve Dower
Author date (UTC): 2017-03-16 17:19
Committer name: GitHub
Committer date (UTC): 2017-03-16 17:19
Parent(s): bd583ef9857d99f9145ad0bb2c4424cc0baa63fc
Signer:
Signing key:
Signing status: N
Tree: b62fcf92f18b05cff568bc16c5b887a81f8e1d8f
File Lines added Lines deleted
Tools/msi/make_zip.proj 3 6
Tools/nuget/make_pkg.proj 3 5
File Tools/msi/make_zip.proj changed (mode: 100644) (index f78e6ffa28..b3588b7a0b)
17 17 <CleanCommand>rmdir /q/s "$(IntermediateOutputPath)\zip_$(ArchName)"</CleanCommand> <CleanCommand>rmdir /q/s "$(IntermediateOutputPath)\zip_$(ArchName)"</CleanCommand>
18 18 <Arguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py"</Arguments> <Arguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\make_zip.py"</Arguments>
19 19 <Arguments>$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName)</Arguments> <Arguments>$(Arguments) -e -o "$(TargetPath)" -t "$(IntermediateOutputPath)\zip_$(ArchName)" -a $(ArchName)</Arguments>
20 <Environment>set DOC_FILENAME=python$(PythonVersion).chm
21 set VCREDIST_PATH=$(VS140COMNTOOLS)\..\..\VC\redist\$(Platform)\Microsoft.VC140.CRT</Environment>
20 <Environment>set DOC_FILENAME=python$(PythonVersion).chm</Environment>
21 <Environment Condition="Exists($(CRTRedist))">$(Environment)%0D%0Aset VCREDIST_PATH=$(CRTRedist)\$(Platform)</Environment>
22 22 </PropertyGroup> </PropertyGroup>
23 23
24 24 <Target Name="_Build"> <Target Name="_Build">
25 <Exec Command="setlocal
26 $(Environment)
27 $(CleanCommand)
28 $(Arguments)" />
25 <Exec Command="setlocal%0D%0A$(Environment)%0D%0A$(CleanCommand)%0D%0A$(Arguments)" />
29 26 </Target> </Target>
30 27
31 28 <Target Name="AfterBuild" /> <Target Name="AfterBuild" />
File Tools/nuget/make_pkg.proj changed (mode: 100644) (index d7e932cee5..464ef0456a)
34 34 <NugetArguments>$(NugetArguments) -Version "$(NuspecVersion)"</NugetArguments> <NugetArguments>$(NugetArguments) -Version "$(NuspecVersion)"</NugetArguments>
35 35 <NugetArguments>$(NugetArguments) -NoPackageAnalysis -NonInteractive</NugetArguments> <NugetArguments>$(NugetArguments) -NoPackageAnalysis -NonInteractive</NugetArguments>
36 36
37 <Environment>setlocal
38 set DOC_FILENAME=python$(PythonVersion).chm
39 set VCREDIST_PATH=$(VS140COMNTOOLS)\..\..\VC\redist\$(Platform)\Microsoft.VC140.CRT</Environment>
37 <Environment>set DOC_FILENAME=python$(PythonVersion).chm</Environment>
38 <Environment Condition="Exists($(CRTRedist))">$(Environment)%0D%0Aset VCREDIST_PATH=$(CRTRedist)\$(Platform)</Environment>
40 39 </PropertyGroup> </PropertyGroup>
41 40
42 41 <Target Name="_NugetMissing" BeforeTargets="_Build" Condition="!Exists($(Nuget))"> <Target Name="_NugetMissing" BeforeTargets="_Build" Condition="!Exists($(Nuget))">
 
... ... set VCREDIST_PATH=$(VS140COMNTOOLS)\..\..\VC\redist\$(Platform)\Microsoft.VC140.
45 44
46 45 <Target Name="_Build"> <Target Name="_Build">
47 46 <Exec Command="$(CleanCommand)" /> <Exec Command="$(CleanCommand)" />
48 <Exec Command="$(Environment)
49 $(PythonArguments)" />
47 <Exec Command="setlocal%0D%0A$(Environment)%0D%0A$(PythonArguments)" />
50 48 <Exec Command="$(PipArguments)" /> <Exec Command="$(PipArguments)" />
51 49 <Exec Command="$(PackageArguments)" Condition="$(PackageArguments) != ''" /> <Exec Command="$(PackageArguments)" Condition="$(PackageArguments) != ''" />
52 50 <Exec Command="$(NugetArguments)" /> <Exec Command="$(NugetArguments)" />
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/benf_wspdigital/cpython

Clone this repository using git:
git clone git://git.rocketgit.com/user/benf_wspdigital/cpython

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main