List of commits:
Subject Hash Author Date (UTC)
bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) 1e2147b9d75a64df370a9393c2b5b9d170dc0afd Nathaniel J. Smith 2017-03-23 03:56:55
Remove an outdated statement in execution model docs (GH-754) fad7f1560669af1766c583c7ef242c55d8c8de41 Ivan Levkivskyi 2017-03-23 00:54:53
doc: minor fix for library/profile (GH-761) bd3d8ba3b22da0bad018b53a3e6610ae03c5aa49 INADA Naoki 2017-03-22 07:56:36
fix function name in tabnanny documentation (GH-759) 75b6cf879fab58c0576d5415eaf38d92bfd678ab Jelle Zijlstra 2017-03-22 06:53:57
bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741) d7fa6b259e00fca04dbf816bfcf4115fdda14bb7 Daniel Birnstiel 2017-03-21 13:06:06
bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) fff9a31a91283c39c363af219e595eab7d4da6f7 Serhiy Storchaka 2017-03-21 06:53:25
Don't use Py_SIZE for dict object. (#747) c61ac1642d19f54c7b755098230967ad2e603180 Serhiy Storchaka 2017-03-21 06:52:38
bpo-27593: Revise git SCM build info. (#744) 554626ada769abf82a5dabe6966afa4265acb6a6 Ned Deily 2017-03-21 03:41:52
bpo-29849: fix a memory leak in import_from (GH-712) 4830f581af57dd305c02c1fd72299ecb5b090eca Xiang Zhang 2017-03-21 03:13:42
Fix "NotImplentedError" typo in constants documentation (#692) 05f53735c8912f8df1077e897f052571e13c3496 zertrin 2017-03-20 12:24:39
bpo-20087: Revert "make the glibc alias table take precedence over the X11 one (#422)" (#713) df8280838f52d6ec45ba03ef734b0dec8a9c43fb Benjamin Peterson 2017-03-20 06:49:43
bpo-28876: bool of large range raises OverflowError (#699) e46fb8611867fa3b407a813f53137929b7cb4a10 4kir4 2017-03-20 06:44:46
bpo-29856: Fix typo in curses documentation (GH-730) 64508780d72769e4c7afc67a511c057261c578f6 Mariatta 2017-03-20 03:48:04
bpo-29845: Mark tests that use _testcapi as CPython-only (#711) 24c738a9e91b8f46da6166663d8ce7ec18cec784 Serhiy Storchaka 2017-03-19 18:20:10
bpo-29116: Fix error messages for concatenating bytes and bytearray with unsupported type. (#709) 6b5a9ec4788770c652bac3bf5d5a0a3b710b82ae Serhiy Storchaka 2017-03-19 17:47:02
bpo-29116: Improve error message for concatenating str with non-str. (#710) 004e03fb0c2febe2ec8afbd28ffcb3e980c63228 Serhiy Storchaka 2017-03-19 17:38:42
bpo-29748: Added the slice index converter in Argument Clinic. (#549) 80ec8364f15857c405ef0ecb1e758c8fc6b332f7 Serhiy Storchaka 2017-03-19 17:37:40
bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514) a5af6e1af77ee0f9294c5776478a9c24d9fbab94 Serhiy Storchaka 2017-03-19 17:25:29
Drop C++ header compatibility test (#718) 77ed11552da3e01dd235b7d68988076866b1f604 Brett Cannon 2017-03-19 16:49:55
bpo-29793: Convert some builtin types constructors to Argument Clinic. (#615) 18b250f844bf8b2d1a81c2d2dcc74e850364fe35 Serhiy Storchaka 2017-03-19 06:51:07
Commit 1e2147b9d75a64df370a9393c2b5b9d170dc0afd - bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477)
* Provide socket.TCP_NOTSENT_LOWAT
* New TCP option available on recent MacOS and Linux.
* Document addition of TCP_NOTSENT_LOWAT
Author: Nathaniel J. Smith
Author date (UTC): 2017-03-23 03:56
Committer name: Mariatta
Committer date (UTC): 2017-03-23 03:56
Parent(s): fad7f1560669af1766c583c7ef242c55d8c8de41
Signer:
Signing key:
Signing status: N
Tree: 8ced60dd3784bf1ddb601b0d896247c8f34b5e38
File Lines added Lines deleted
Doc/library/socket.rst 3 0
Misc/NEWS 3 0
Modules/socketmodule.c 3 0
File Doc/library/socket.rst changed (mode: 100644) (index d56caf0a58..8af6bc5439)
... ... Constants
303 303 ``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``, ``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``,
304 304 ``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added. ``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added.
305 305
306 .. versionchanged:: 3.7
307 ``TCP_NOTSENT_LOWAT`` was added.
308
306 309 .. data:: AF_CAN .. data:: AF_CAN
307 310 PF_CAN PF_CAN
308 311 SOL_CAN_* SOL_CAN_*
File Misc/NEWS changed (mode: 100644) (index b17a5e9007..aac10a6bef)
... ... Library
317 317
318 318 - bpo-28682: Added support for bytes paths in os.fwalk(). - bpo-28682: Added support for bytes paths in os.fwalk().
319 319
320 - bpo-29728: Add new :data:`socket.TCP_NOTSENT_LOWAT` (Linux 3.12) constant.
321 Patch by Nathaniel J. Smith.
322
320 323 - bpo-29623: Allow use of path-like object as a single argument in - bpo-29623: Allow use of path-like object as a single argument in
321 324 ConfigParser.read(). Patch by David Ellis. ConfigParser.read(). Patch by David Ellis.
322 325
File Modules/socketmodule.c changed (mode: 100644) (index 63e87e6e48..6d5c256ff3)
... ... PyInit__socket(void)
7507 7507 #ifdef TCP_USER_TIMEOUT #ifdef TCP_USER_TIMEOUT
7508 7508 PyModule_AddIntMacro(m, TCP_USER_TIMEOUT); PyModule_AddIntMacro(m, TCP_USER_TIMEOUT);
7509 7509 #endif #endif
7510 #ifdef TCP_NOTSENT_LOWAT
7511 PyModule_AddIntMacro(m, TCP_NOTSENT_LOWAT);
7512 #endif
7510 7513
7511 7514 /* IPX options */ /* IPX options */
7512 7515 #ifdef IPX_TYPE #ifdef IPX_TYPE
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