List of commits:
Subject Hash Author Date (UTC)
bpo-29913: deprecate compare_networks() in documentation (GH-865) 16f852345bcdec1bbb15e5363fad6b33bf960912 s-sanjay 2017-03-30 07:44:29
bpo-29918: Add missed "const" modifiers in C API documentation. (#846) 84b8e92e463bd6a5174bd3e5a6543580f6319c57 Serhiy Storchaka 2017-03-30 07:01:03
bpo-27863: Fixed multiple crashes in ElementTree. (#765) 576def096ec7b64814e038f03290031f172886c3 Serhiy Storchaka 2017-03-30 06:47:31
bpo-29816: Shift operation now has less opportunity to raise OverflowError. (#680) 918403cfc3304d27e80fb792357f40bb3ba69c4e Serhiy Storchaka 2017-03-30 06:47:07
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) 762bf40438a572a398e500c74e38f9894ea20a45 Serhiy Storchaka 2017-03-30 06:15:31
bpo-25996: Added support of file descriptors in os.scandir() on Unix. (#502) ea720fe7e99d68924deab38de955fe97f87e2b29 Serhiy Storchaka 2017-03-30 06:12:31
bpo-24821: Fixed the slowing down to 25 times in the searching of some (#505) 0a58f72762353768c7d26412e627ff196aac6c4e Serhiy Storchaka 2017-03-30 06:11:10
bpo-29878: Add global instances of int for 0 and 1. (#852) ba85d69a3e3610bdd05f0dd372cf4ebca178c7fb Serhiy Storchaka 2017-03-30 06:09:41
Remove an unrequired TODO in test_urllib2. (#897) e6911a44f69c0d302db60f49952a9cf69da69a2b Senthil Kumaran 2017-03-30 06:02:29
bpo-29917: DOC: Remove link from PyMethodDef (#890) c3c7ef088583cc12bd218138036d1edb6de9c63f csabella 2017-03-30 00:27:50
bpo-29677: DOC: clarify documentation for `round` (GH-877) 85deefcf61d3cc192846f41a4ccc6df17da60c98 csabella 2017-03-29 21:14:06
bpo-29932: Fix small error message typos in arraymodule.c (GH-888) a90e64b78d74b80a7cbcca2237280c724b99431b Sylvain 2017-03-29 18:09:22
bpo-29927: Remove duplicate BufferError init and unnecessary semicolons (GH-866) c431854a0963d4ec2875efab2d2425a738895280 Louie Lu 2017-03-29 05:28:15
bpo-29936: fix typo __GNU*C*_MINOR__ (#878) 83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1 Niklas Fiekas 2017-03-29 04:58:01
bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-693) 794623bdb232eafd8925f76470209afcdcbcdcd2 Xiang Zhang 2017-03-29 03:58:54
bpo-19791: Use functions from test support to check the symlink support. (GH-822) ec1f5df46ed37aa3e839d20298c4b361a9a74bc4 Vajrasky Kok 2017-03-28 19:32:35
bpo-10379: add 'monetary' to format_string, deprecate format 1cf93a76c2cf307f2e1e514a8944864f746337ea Garvit Khatri 2017-03-28 15:43:38
NEWS: remove duplicated "Build" section (GH-872) c8fa45bac2942accdb24dde318f87c9eb21dbfde INADA Naoki 2017-03-28 15:24:30
bpo-16011 clarify that 'in' always returns a boolean value 0ae7c8bd614d3aa1fcaf2d71a10ff1148c80d9b5 Amit Kumar 2017-03-28 14:13:01
Improve the documentation for template strings (#856) 9f74deba784fc8781d13ed564f69c02ed7c331bb Barry Warsaw 2017-03-28 14:02:07
Commit 16f852345bcdec1bbb15e5363fad6b33bf960912 - bpo-29913: deprecate compare_networks() in documentation (GH-865)
Author: s-sanjay
Author date (UTC): 2017-03-30 07:44
Committer name: Xiang Zhang
Committer date (UTC): 2017-03-30 07:44
Parent(s): 84b8e92e463bd6a5174bd3e5a6543580f6319c57
Signer:
Signing key:
Signing status: N
Tree: 269f9a723c361351f2355a69a609d158d7a6d6d0
File Lines added Lines deleted
Doc/library/ipaddress.rst 3 0
Misc/ACKS 1 0
File Doc/library/ipaddress.rst changed (mode: 100644) (index 50fb778dfb..90dfd46119)
... ... so to avoid duplication they are only documented for :class:`IPv4Network`.
554 554 >>> ip_network('192.0.2.1/32').compare_networks(ip_network('192.0.2.1/32')) >>> ip_network('192.0.2.1/32').compare_networks(ip_network('192.0.2.1/32'))
555 555 0 0
556 556
557 .. deprecated:: 3.7
558 It uses the same ordering and comparison algorithm as "<", "==", and ">"
559
557 560
558 561 .. class:: IPv6Network(address, strict=True) .. class:: IPv6Network(address, strict=True)
559 562
File Misc/ACKS changed (mode: 100644) (index 2056efe8fb..21642065f4)
... ... Peter Åstrand
1730 1730 evilzero evilzero
1731 1731 Dhushyanth Ramasamy Dhushyanth Ramasamy
1732 1732 Subhendu Ghosh Subhendu Ghosh
1733 Sanjay Sundaresan
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