List of commits:
Subject Hash Author Date (UTC)
bpo-29763: Use support.unlink instead of os.unlink (GH-624) 93710c152e6bcfffdf2f1f15bb5f75b013aef422 Zachary Ware 2017-03-12 04:10:07
bpo-29656: Handle PR branches in 'make patchcheck' (#302) 482f7a274fa52b7ba34ff308cd9acdcac9f41ba5 Nick Coghlan 2017-03-12 03:19:08
bpo-26121: Use C library implementation for math functions: (#515) 97553fdf9daa8231eb05a1ca9933a2b03b0bdad0 Serhiy Storchaka 2017-03-11 21:37:16
Only trigger AppVeyor on code or config changes (GH-611) c5d3bfea0b0bba34bc3cd517a12153e189c80556 Zachary Ware 2017-03-11 20:55:35
tempfile.rst: Fix some typos (GH-610) d3b8f98696b905367da3975f73b482bac380b51c Jelle Zijlstra 2017-03-11 17:34:55
bpo-20185: Convert float object implementation to Argument Clinic. (#543) b5c51d3dd95bbfde533655fb86ac0f96f771ba7b Serhiy Storchaka 2017-03-11 07:21:05
bpo-20185: Convert list object implementation to Argument Clinic. (#542) fdd42c481edba4261f861fc1dfe24bbd79b5a17a Serhiy Storchaka 2017-03-11 07:19:20
bpo-29770: remove outdated PYO related info (GH-590) 0710d754255e731e6fcc3f206b51db6156da17c8 Xiang Zhang 2017-03-11 05:02:52
bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) 70ee0cd5c2a3dba82cb8e0c0742c012f9134c040 Mariatta 2017-03-11 02:17:21
bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250) 4b2a2a425a906c8e4eb8daee14ab1793e225f726 Ivan Levkivskyi 2017-03-10 22:52:35
bpo-29741: Clean up C implementations of BytesIO and StringIO. (#606) 740025478dcd0e9e4028507f32375c85f849fb07 orenmn 2017-03-10 22:52:01
bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239) 7e52c3e7aefb4cdaa0662fc01ff68a5e976b77ca Ivan Levkivskyi 2017-03-10 22:16:44
bpo-28739: Document that f-strings cannot be used as docstring (GH-592) d4e89287b397c7382c12d3f3d9fd901fd8243b3c Mariatta 2017-03-10 16:58:40
Ignore Include/pydtrace_probes.h (#597) 50da40fd5295c8ca75f7bbdc1009714680e99ac0 Łukasz Langa 2017-03-10 13:29:43
bpo-29773: Add more cases for testing string to float conversion errors. (#580) 9e6ac83acae31de2b072e665e177db9fcdf7c049 Serhiy Storchaka 2017-03-09 18:07:58
bpo-29619: Convert st_ino using unsigned integer (#557) 0f6d73343d342c106cda2219ebb8a6f0c4bd9b3c Victor Stinner 2017-03-09 16:34:28
bpo-29774: Improve error reporting for corrupted extra field in ZIP file. (#583) feccdb2a249a71be330765be77dee57121866779 Serhiy Storchaka 2017-03-09 16:34:03
bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements (#570) 964281af59d7a17d923c4d72357e48832b774e39 orenmn 2017-03-09 09:35:28
bpo-29768: Fixed compile-time check for expat version. (#574) 22e707fa04476710ba5cc7e2206e4ac66743931b Serhiy Storchaka 2017-03-09 07:47:52
bpo-29749: Update int() docstring (GH-565) 390a0969c1206a37c86961ebf7ef3050681ed8dd svelankar 2017-03-09 00:29:01
Commit 93710c152e6bcfffdf2f1f15bb5f75b013aef422 - bpo-29763: Use support.unlink instead of os.unlink (GH-624)
support.unlink waits for the files to be removed before returning
Author: Zachary Ware
Author date (UTC): 2017-03-12 04:10
Committer name: GitHub
Committer date (UTC): 2017-03-12 04:10
Parent(s): 482f7a274fa52b7ba34ff308cd9acdcac9f41ba5
Signer:
Signing key:
Signing status: N
Tree: d62e4a4e89ca851a3cc6c55c71948d8b5890c777
File Lines added Lines deleted
Lib/test/test_site.py 4 4
File Lib/test/test_site.py changed (mode: 100644) (index 0620b24276..342ec9e43d)
... ... class StartupImportTests(unittest.TestCase):
501 501 print(line, file=f) print(line, file=f)
502 502 return exe_file return exe_file
503 503 except: except:
504 os.unlink(_pth_file)
505 os.unlink(exe_file)
504 test.support.unlink(_pth_file)
505 test.support.unlink(exe_file)
506 506 raise raise
507 507
508 508 @classmethod @classmethod
509 509 def _cleanup_underpth_exe(self, exe_file): def _cleanup_underpth_exe(self, exe_file):
510 510 _pth_file = os.path.splitext(exe_file)[0] + '._pth' _pth_file = os.path.splitext(exe_file)[0] + '._pth'
511 os.unlink(_pth_file)
512 os.unlink(exe_file)
511 test.support.unlink(_pth_file)
512 test.support.unlink(exe_file)
513 513
514 514 @classmethod @classmethod
515 515 def _calc_sys_path_for_underpth_nosite(self, sys_prefix, lines): def _calc_sys_path_for_underpth_nosite(self, sys_prefix, lines):
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