List of commits:
Subject Hash Author Date (UTC)
Remove outdated note about constraining of the bit shift right operand. (#1258) 997a4adea606069e01beac6269920709db3994d1 Serhiy Storchaka 2017-04-22 18:50:09
Fix trailing colon and newline in test.rst (#1250) 7fae81e1672d0b4110d31ea6a765b54f63a2e54b Louie Lu 2017-04-22 06:46:18
Remove unneeded Misc/NEWS entry for bpo-29802. (#1251) 7bfd740e3d484e6fdf3f5c2d4640450957f9d89c Serhiy Storchaka 2017-04-22 06:24:59
bpo-29960 _random.Random corrupted on exception in setstate(). (#1019) 9616a82e7802241a4b74cf7ae38d43c37bf66e48 bladebryan 2017-04-22 06:10:46
bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZE. (#751) 1a5856bf9295fa73995898d576e0bedf016aee1f Serhiy Storchaka 2017-04-21 23:48:11
bpo-30125: disable faulthandler in ctypes test_SEH (#1237) a36e939aeb3b5a2c56561eb24f0e339eee9f3f9d Victor Stinner 2017-04-21 22:31:13
bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) ae5b3260dd459845aad8a30491b76d471577785d Charles Renwick 2017-04-21 20:49:48
Correct the README link in Unix install docs (#1245) d1ae24e8880fe00d006eb2996af815c35fbcfb33 Sebastian Vetter 2017-04-21 17:24:57
bpo-30125: Fix faulthandler.disable() on Windows (#1240) 46c2b81026bbf966c0898a1fa30d98c33673aea0 Victor Stinner 2017-04-21 16:06:13
bpo-30107: don't dump core on expected test_io crash (#1235) 2a1aed04b0943636f605543522e16cca1dc23e70 Victor Stinner 2017-04-21 15:59:23
bpo-30106: Fix test_asyncore.test_quick_connect() (#1234) a2c877c3985aba4adb19755e21f477e1c639cfd9 Victor Stinner 2017-04-21 11:51:53
bpo-30104: configure now detects when cc is clang (#1233) 35f3d240ee5f0958034bd500949b08764e36f4dc Victor Stinner 2017-04-21 10:35:24
bpo-30104: Use -fno-strict-aliasing on clang (#1221) 28205b203a4742c40080b4a2b4b2dcd800716edc Victor Stinner 2017-04-21 09:24:34
remove configure test for inline keyword (#1231) 791dc831198f3ecc1531f8e6f05debf4ce234d00 Benjamin Peterson 2017-04-21 06:52:19
bpo-29191: Add liblzma.vcxproj to pcbuild.sln and other missing entries (#1222) f60c9e54f501065f3be2a4cfb4c387dfa2f243a9 Segev Finer 2017-04-20 23:33:28
Add missing .gitignore entries for VS2015 IntelliSense DB (#1223) 8e675286a92f33837cfffac5914b5175dac5d573 Segev Finer 2017-04-20 23:32:26
bpo-29802: Fix reference counting in module-level struct functions (#1213) 40db90c1ce1a59d5f5f2894bb0ce32110000bf27 Serhiy Storchaka 2017-04-20 18:19:31
Only define get_zone() and get_gmtoff() if needed (#1193) 8f5cdfa9fc1bb6b4d9a33fc281987252f6398430 Victor Stinner 2017-04-20 11:41:09
support.threading_cleanup() log a warning on fail (#1195) d20324a7fab6734bae19b1f070b5c8aae5ff3612 Victor Stinner 2017-04-20 11:40:08
bpo-30108: Restore sys.path in test_site (#1197) b85c136903c6d2368162f7c4a58f258c9c69ead0 Victor Stinner 2017-04-20 11:39:39
Commit 997a4adea606069e01beac6269920709db3994d1 - Remove outdated note about constraining of the bit shift right operand. (#1258)
The constrain was removed in bpo-29816.
Author: Serhiy Storchaka
Author date (UTC): 2017-04-22 18:50
Committer name: GitHub
Committer date (UTC): 2017-04-22 18:50
Parent(s): 7fae81e1672d0b4110d31ea6a765b54f63a2e54b
Signer:
Signing key:
Signing status: N
Tree: 32ab7680364bd2beb792a56cfbe056232c9ca91a
File Lines added Lines deleted
Doc/reference/expressions.rst 0 5
File Doc/reference/expressions.rst changed (mode: 100644) (index c4f6c55c7c..6e9e07a809)
... ... the left or right by the number of bits given by the second argument.
1173 1173 A right shift by *n* bits is defined as floor division by ``pow(2,n)``. A left A right shift by *n* bits is defined as floor division by ``pow(2,n)``. A left
1174 1174 shift by *n* bits is defined as multiplication with ``pow(2,n)``. shift by *n* bits is defined as multiplication with ``pow(2,n)``.
1175 1175
1176 .. note::
1177
1178 In the current implementation, the right-hand operand is required
1179 to be at most :attr:`sys.maxsize`. If the right-hand operand is larger than
1180 :attr:`sys.maxsize` an :exc:`OverflowError` exception is raised.
1181 1176
1182 1177 .. _bitwise: .. _bitwise:
1183 1178
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