List of commits:
Subject Hash Author Date (UTC)
bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694) cb5297a9e6b51c736ab8564b1a123577ba0dd2ad Jim Fasarakis-Hilliard 2017-03-17 18:16:20
bpo-29808: SysLogHandler: Do not fail if initial connect to syslog failed (#663) (#663) 1b038e073807ecb6fd176edaf3386a8e3205416e Коренберг Марк 2017-03-17 15:25:05
bpo-16355: Clarify when inspect.getcomments() returns None (#428) 3f2155ffe683080f2a1b28408fa48d43ba92f943 Marco Buttu 2017-03-17 08:50:23
bpo-29820: othergui.rst: Remove outdated information (GH-685) 1bb0f3762ec5104014aeed0ae6e9d64598d8fcac Marco Buttu 2017-03-17 02:50:40
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
Commit cb5297a9e6b51c736ab8564b1a123577ba0dd2ad - bpo-29836: Remove nturl2path from test_sundry and amend the module docstring (GH-694)
The module is implicitly tested through test_urllib.
Author: Jim Fasarakis-Hilliard
Author date (UTC): 2017-03-17 18:16
Committer name: Brett Cannon
Committer date (UTC): 2017-03-17 18:16
Parent(s): 1b038e073807ecb6fd176edaf3386a8e3205416e
Signer:
Signing key:
Signing status: N
Tree: fb6da1bebbfd911c70e6a1f24d8a9fd87619cede
File Lines added Lines deleted
Lib/nturl2path.py 6 1
Lib/test/test_sundry.py 1 2
File Lib/nturl2path.py changed (mode: 100644) (index 36dc765887..853e660838)
1 """Convert a NT pathname to a file URL and vice versa."""
1 """Convert a NT pathname to a file URL and vice versa.
2
3 This module only exists to provide OS-specific code
4 for urllib.requests, thus do not use directly.
5 """
6 # Testing is done through test_urllib.
2 7
3 8 def url2pathname(url): def url2pathname(url):
4 9 """OS-specific conversion from a relative URL of the 'file' scheme """OS-specific conversion from a relative URL of the 'file' scheme
File Lib/test/test_sundry.py changed (mode: 100644) (index 1fb9964698..dddf326552)
... ... import unittest
6 6
7 7 class TestUntestedModules(unittest.TestCase): class TestUntestedModules(unittest.TestCase):
8 8 def test_untested_modules_can_be_imported(self): def test_untested_modules_can_be_imported(self):
9 untested = ('bdb', 'encodings', 'formatter',
10 'nturl2path', 'tabnanny')
9 untested = ('bdb', 'encodings', 'formatter', 'tabnanny')
11 10 with support.check_warnings(quiet=True): with support.check_warnings(quiet=True):
12 11 for name in untested: for name in untested:
13 12 try: try:
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