List of commits:
Subject Hash Author Date (UTC)
PCbuild: Add -q option to svn export (GH-535) 8886d5f39286dffa7d9337857b151e7fb4af23fd INADA Naoki 2017-03-07 06:34:38
bpo-29676: fix lsprof can't profile C method call. (GH523) 93fac8dd358cd0e85e7b59115db226ce685d3f6f INADA Naoki 2017-03-07 05:24:37
bpo-28728: clarify possible test failure due to ISP (GH-412) d36a71637cefdddc02efd884f1b2c204f370afaa Xiang Zhang 2017-03-07 03:06:09
Exclude myself from mention-bot (#529) fea967658d2dff1e2afc45311e1ee6a40e3176c2 Victor Stinner 2017-03-07 01:51:47
bpo-29737: Optimize concatenating with empty tuple. (#524) 98e80c2babac0003182c3482c6c5437ea111e795 Serhiy Storchaka 2017-03-06 21:39:35
bpo-15954: Check return code of wcsxfrm(). (#508) be487a65f18e1be5fde03e2977fff4be53cc2fbf Serhiy Storchaka 2017-03-06 19:21:41
bpo-29695: Fixed tests after removing keyword args support in some basic type constructors. (GH-520) d908fd9ee1c307f7066023eb2031c0f509036cbc Serhiy Storchaka 2017-03-06 19:08:59
Ignore What's New for MentionBot (GH-521) 0f5f1c3055e4c5b3d6165f56507bae6e16af7ca8 Matthias Bussonnier 2017-03-06 18:56:58
The mention-bot is too exuberant for my taste. (#522) 4e0f612a1fc8444fe4fef3231f6934379e302a26 Stefan Krah 2017-03-06 17:28:29
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) 2e5642422f6234fd8d0c082142b27340e588f96e Serhiy Storchaka 2017-03-06 15:01:06
bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499) b76ad5121e2cfa89d6476d700cbcb65b7ffc39ac Xiang Zhang 2017-03-06 09:17:05
remove 3 redundant casts in Objects/longobject.c (#445) 86aa269646fa73bbcbc26f45ed854359d04c1fde orenmn 2017-03-06 08:42:47
bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494) 2225ddaa9e64c086b2b6997b0c9ac50921f7aa85 INADA Naoki 2017-03-06 06:41:59
Fixes the upload script to purge the CDN correctly and display success output. (#466) f6e61019ae6b2517c8eb7755f75e4de95355be38 Steve Dower 2017-03-06 03:55:12
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) 58d23e68068996c76cac78887ec67dee68cdbc72 Serhiy Storchaka 2017-03-05 22:53:39
Add Appveyor (GH-324) d31b28e16a2387d0251df948ef5d1b33d4357652 Zachary Ware 2017-03-05 21:45:53
bpo-29638: Fix spurious refleaks after typing is imported (#469) 7acffa23c9e7866e5b4b98b8f3c28b14ec1c688c Ivan Levkivskyi 2017-03-05 18:15:20
Change assertRaises to assertRaisesRegex in test_xmlrpc (#481) c6b448b36d22769c684bb3276f85c1b47d15ab63 Dillon Brock 2017-03-05 17:27:06
Docs: Add note regarding "reversed" flag in heapq.merge (#300) b4e1b92aabcd302ac54fa58cd4fee8a138dbb5aa Adam Niederer 2017-03-05 16:56:05
distutils docs: Fix a typo (GH-470) 2a7bddaab7d6e1f7b243cdbb4fa6f6c8e266b18d Mariatta 2017-03-05 00:41:06
Commit 8886d5f39286dffa7d9337857b151e7fb4af23fd - PCbuild: Add -q option to svn export (GH-535)
Without this option, AppVeyor log is too unreadable.
Author: INADA Naoki
Author date (UTC): 2017-03-07 06:34
Committer name: GitHub
Committer date (UTC): 2017-03-07 06:34
Parent(s): 93fac8dd358cd0e85e7b59115db226ce685d3f6f
Signer:
Signing key:
Signing status: N
Tree: a32f2e80a7d3f8414f1ada080e9023ebb4daef3b
File Lines added Lines deleted
PCbuild/get_externals.bat 1 1
File PCbuild/get_externals.bat changed (mode: 100644) (index 98a755d870..3a2656e961)
... ... for %%e in (%libraries%) do (
66 66 echo.%%e already exists, skipping. echo.%%e already exists, skipping.
67 67 ) else ( ) else (
68 68 echo.Fetching %%e... echo.Fetching %%e...
69 svn export %SVNROOT%%%e
69 svn export -q %SVNROOT%%%e
70 70 ) )
71 71 ) )
72 72
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