List of commits:
Subject Hash Author Date (UTC)
bpo-29924: Remove useless argument (#854) d67a103702cf57de90a62c90f7ae969c23d96218 Sylvain 2017-03-27 21:36:08
bpo-29912: Remove redundant tests in list_tests that are found in seq_tests (GH-847) d702c50049207d825c1d5925fbc7306514fa9a0a Jim Fasarakis-Hilliard 2017-03-27 19:35:52
bpo-29919: Remove unused imports found by pyflakes (#137) d6debb24e06152a827769b0cac24c47deccdeac1 Victor Stinner 2017-03-27 14:05:26
bpo-20552: Use specific asserts in bytes tests (#790) 604e74c6beb2585c81083fa85f0e5a4d46965cbc Serhiy Storchaka 2017-03-27 10:59:07
Minor test cleanup (GH-837) b8a7daf077dab18e9e3701c5380b542ae0aa9a94 Zachary Ware 2017-03-27 05:08:31
Treat Sphinx warnings as errors (GH-832) 334e9ec938ea9876baadef15edb135d6d2aff30c Zachary Ware 2017-03-27 02:31:31
import sys before we use it on line 9 (#828) 0579e81f30d00da562f021760d5b6a9c35186520 Jelle Zijlstra 2017-03-27 02:17:39
Fixes sphinx warning in "changelog" misc/NEWS (#829) 5fb278fd58688177a113755e1996cd4c9706477c Michael Seifert 2017-03-27 01:25:57
Fix small exception typos in Lib (#818) 1e73dbbc29c96d0739ffef92db36f63aa1aa30da Jim Fasarakis-Hilliard 2017-03-26 20:59:08
bpo-29888: Fix the link referring to the "Python download page" (GH-824) f8beb9831acd5cf80b9c56aea5864e16118c5400 cocoatomo 2017-03-26 17:32:24
bpo-29900: Simplify pathlib implementation. (#814) 62a99515301fa250feba1a2e0f2d8ea2a29d700e Serhiy Storchaka 2017-03-25 11:42:11
bpo-29901: Improve support of path-like objects in zipapp. (#815) 4aec9a8be2f2574f249008eb8be76c070fea37eb Serhiy Storchaka 2017-03-25 11:05:23
Simplify partial.__new__. (#813) 3c749fc867f69deac75f866d5c1ba0f60e54c1fa Serhiy Storchaka 2017-03-25 10:10:16
bpo-29862: Fix grammar in importlib.reload() exception (GH-809) 9f0aa4843f8c26937d5817f27cac4aae9c0a034f Mandeep Bhutani 2017-03-25 04:51:21
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) 29540cdf6c66df9f806375a95078c0c63192ef78 NAKAMURA Osamu 2017-03-25 02:55:08
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) 8f9e1bbf2dbdf46a0bf920279568a31460043376 Ivan Levkivskyi 2017-03-24 21:05:04
bpo-29894: Deprecate returning an instance of complex subclass from __complex__. (#798) 671079ef6063fe227460a6c3114625fb6282bbd0 Serhiy Storchaka 2017-03-24 19:28:43
bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) af7b9ec5c855366feef4c67dc492d64b3baf84ca Serhiy Storchaka 2017-03-24 18:51:53
bpo-29861: release references to multiprocessing Pool tasks (#743) 8988945cdc27ffa86ba8c624e095b51c459f5154 Antoine Pitrou 2017-03-24 12:52:11
bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799) e304e33c16e060932d1e2cc8a030d42b02b429b5 Serhiy Storchaka 2017-03-24 11:27:42
Commit d67a103702cf57de90a62c90f7ae969c23d96218 - bpo-29924: Remove useless argument (#854)
Author: Sylvain
Author date (UTC): 2017-03-27 21:36
Committer name: Victor Stinner
Committer date (UTC): 2017-03-27 21:36
Parent(s): d702c50049207d825c1d5925fbc7306514fa9a0a
Signer:
Signing key:
Signing status: N
Tree: c2c82cdcb42e0bb1c443085550a4e2fa3e853ea9
File Lines added Lines deleted
Objects/call.c 1 1
File Objects/call.c changed (mode: 100644) (index 7890c138d6..4c74eab44f)
... ... _PyMethodDef_RawFastCallDict(PyMethodDef *method, PyObject *self, PyObject **arg
550 550 no_keyword_error: no_keyword_error:
551 551 PyErr_Format(PyExc_TypeError, PyErr_Format(PyExc_TypeError,
552 552 "%.200s() takes no keyword arguments", "%.200s() takes no keyword arguments",
553 method->ml_name, nargs);
553 method->ml_name);
554 554
555 555 exit: exit:
556 556 Py_LeaveRecursiveCall(); Py_LeaveRecursiveCall();
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