List of commits:
Subject Hash Author Date (UTC)
Fix tests: getsockname() can return None on OS X on unbound sockets (#1400) 0360a9d015ddbc4e3d58e3ab4b433da27bf1db3a Antoine Pitrou 2017-05-02 21:48:26
bpo-30232: Regenerate configure (#1396) 9ed34a89532763cf89f5e11fffb91ef7dee29fed Victor Stinner 2017-05-02 20:35:58
bpo-30232: Support Git worktree in configure.ac (#1391) 5facdbb29169c2799c42f887cef4cd9d087b0167 Victor Stinner 2017-05-02 19:42:48
Remove outdated tests in test_isinstance (GH-1393) 094909ad69a6654ac43c69ebdced060fbbbbede8 Jim Fasarakis-Hilliard 2017-05-02 17:17:18
bpo-28556: Routine updates to typing (#1366) f06e0218ef6007667f5d61184b85a81a0466d3ae Ivan Levkivskyi 2017-05-02 17:14:07
bpo-30205: Fix getsockname() for unbound AF_UNIX sockets on Linux (#1370) 495b5021e73e3c4b6404417ecf4fa83aa10297f0 Antoine Pitrou 2017-05-02 15:20:00
Fix typo in selectors.rst (#1383) b0d82036549074357717d130a772d1e2ebc8ea01 Tong SHEN 2017-05-02 13:27:57
bpo-30228: FileIO seek() and tell() set seekable (#1384) 999707373630ce090300c3c542066f493b12faa0 Victor Stinner 2017-05-02 13:10:39
bpo-30199: test_ssl closes all asyncore channels (#1381) 1dae7450c68bad498e57800387b24cb103c461fa Victor Stinner 2017-05-02 11:12:02
bpo-30132: distutils BuildExtTestCase use temp_cwd (#1380) 92fd6c9ef54a857815e3dca8ee74b2b4f5cdf154 Victor Stinner 2017-05-02 11:11:50
Clean up some confusing text left by PROTOCOL_SSLv23 -> PROTOCOL_TLS transition (#1355) d4069de5112f0408801ff2479476827bb3e0e8fc Nathaniel J. Smith 2017-05-02 05:43:31
bpo-30190: improved error msg for assertAlmostEqual(delta=...) (#1331) 5d7a8d0c13737fd531b722ad76c505ef47aac96a Giampaolo Rodola 2017-05-01 16:18:56
restore *data* parameter of binascii.b2a_base64 to positional-only (#1352) 1374dbb6940f29c49c2966551a06015857c942cc Xiang Zhang 2017-05-01 05:12:07
bpo-29679: Implement @contextlib.asynccontextmanager (#360) 2e624690bd74071358566300b7ef0bc45f444a30 Jelle Zijlstra 2017-05-01 01:25:58
bpo-30208: DOC: fix small typos in IDLE (#1354) 9dc2b3809f38be2e403ee264958106badfda142d csabella 2017-04-29 22:28:36
bpo-30158: Fix deprecation warnings in test_importlib introduced by bpo-29576. (#1285) 3cc8259b71ef784a9f7593f04da96043afe2228a Serhiy Storchaka 2017-04-29 04:06:49
Check that Python is 64-bit before enabling BLAKE2_USE_SSE. (#1332) 6c991bdee7ec4bedd8c1b8d3812dc884b654b57c Neil Schemenauer 2017-04-28 16:56:48
bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. (#1341) d1a1def7bf221b04dcf3fc3a67aa19aa2f622f83 Serhiy Storchaka 2017-04-28 16:17:26
Improve the grammar in windows.rst (GH-1330) 80a3da4d4aad0b51893e1e2f696b6252eca80e07 Wieland Hoffmann 2017-04-28 16:12:57
bpo-30104: Only use -fno-strict-aliasing on dtoa.c (#1340) 826f83f1d562a7b878499bc3af2267cfdfe5f2f9 Victor Stinner 2017-04-28 13:07:10
Commit 0360a9d015ddbc4e3d58e3ab4b433da27bf1db3a - Fix tests: getsockname() can return None on OS X on unbound sockets (#1400)
Author: Antoine Pitrou
Author date (UTC): 2017-05-02 21:48
Committer name: GitHub
Committer date (UTC): 2017-05-02 21:48
Parent(s): 9ed34a89532763cf89f5e11fffb91ef7dee29fed
Signer:
Signing key:
Signing status: N
Tree: 514a2087caf2af7c2c3cbc2c3108e42e10afa4ce
File Lines added Lines deleted
Lib/test/test_socket.py 2 2
File Lib/test/test_socket.py changed (mode: 100644) (index 5e37fc608f..f28f7d6816)
... ... class TestUnixDomain(unittest.TestCase):
4683 4683 raise raise
4684 4684
4685 4685 def testUnbound(self): def testUnbound(self):
4686 # Issue #30205
4687 self.assertEqual(self.sock.getsockname(), '')
4686 # Issue #30205 (note getsockname() can return None on OS X)
4687 self.assertIn(self.sock.getsockname(), ('', None))
4688 4688
4689 4689 def testStrAddr(self): def testStrAddr(self):
4690 4690 # Test binding to and retrieving a normal string pathname. # Test binding to and retrieving a normal string pathname.
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