Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix misleading documentation for math.exp. (#951) | 734125938d4653459593ebd28a0aec086efb1f27 | Mark Dickinson | 2017-04-02 15:30:04 |
bpo-19225: Add a table of warning names and missed exception names in C API doc (#881) | e8c763128fb459c5c98194e4312f31493c0f12df | cocoatomo | 2017-04-02 10:45:40 |
bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298) | 351adda54bed3afbbf6db7725699679e68722d7d | Pierre Quentel | 2017-04-02 10:26:12 |
Minor spell fix and formatting fixes in urllib tests. (#959) | efbd4ea65dbb9f87b1afeec6a760802756badee5 | Senthil Kumaran | 2017-04-02 06:47:35 |
bpo-29957: change LBYL key lookup to dict.setdefault (#938) | 11fa3c7cd1b151e302d4eee0369cafbaf151c8fb | Michael Selik | 2017-04-02 06:02:31 |
bpo-26947: DOC: clarify wording on hashable in glossary (#948) | 64c887ab3a400cf91bde4f0c5ef69eacc88bc5e1 | csabella | 2017-04-02 02:50:47 |
bpo-29949: Fix set memory usage regression (GH-943) | e82cf8675bacd7a03de508ed11865fc2701dcef5 | INADA Naoki | 2017-04-01 08:20:25 |
Revert "bpo-29763: Use unittest cleanup in test_site (GH-841)" (GH-942) | cd815edf012dc6dd20dfeef91951270e96607616 | Zachary Ware | 2017-04-01 06:29:31 |
bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and v6. (#879) | 7bd8d3e794782582a4ad1c9749424fff86802c3e | s-sanjay | 2017-04-01 06:09:53 |
Add helpful explaination to test_password_manager tests. (#936) | 1f5425ff69ea0531d869b4f9fa28bd3f66ca3de7 | Senthil Kumaran | 2017-04-01 05:27:27 |
bpo-29763: Use unittest cleanup in test_site (GH-841) | b94d7fd4efa877d649cea9c8125c8869ffe0c32d | Zachary Ware | 2017-04-01 05:18:23 |
Link to the devguide's PR guidelines (GH-932) | 1e5766ff436cea8871042d3b3be571e04b4058f9 | Brett Cannon | 2017-03-31 21:19:04 |
bpo-29953: Fix memory leaks in the replace() method of datetime and time (#927) | 314d6fca36a4eaa0541218431d14804fadec6488 | Serhiy Storchaka | 2017-03-31 19:48:16 |
Fix spurious MemoryError introduced by PR #886. (#930) | 06bb4873d6a9ac303701d08a851d6cd9a51e02a3 | T. Wouters | 2017-03-31 17:10:19 |
bpo-29941: Assert fixes (#886) | a00c3fd12d421e41b769debd7df717d17b0deed5 | T. Wouters | 2017-03-31 16:14:41 |
suppress compiler warnings in _ctypes_test (#902) | 164d30eb1e66575dafee6af4fca4cbf52c7fbe6a | Benjamin Peterson | 2017-03-31 11:05:25 |
bpo-29952: Use usual terminology of dict (GH-917) | cdcac039fb447f2ab04efcacbe663751bb2cb4ec | cocoatomo | 2017-03-31 05:48:49 |
Remove catching OSError in ftphandler test. Only URLError is raised in urllib.request module. (#918) | ed3dd1c02af6872bd0748f7b9a5dadb89f7b830f | Senthil Kumaran | 2017-03-31 05:43:05 |
bpo-29928: Add f-string to the Glossary (GH-864) | 33db068dac7686e37736f7ecf8abb2aee0345cf2 | Mariatta | 2017-03-30 19:12:18 |
bpo-29946: Fix "sqrtpi defined but not used" (#908) | 7a26464c6496c29244072fdd80f9b92c68174742 | Louie Lu | 2017-03-30 17:05:10 |
File | Lines added | Lines deleted |
---|---|---|
Doc/library/math.rst | 2 | 2 |
File Doc/library/math.rst changed (mode: 100644) (index da2b8cc586..b1f56929c3) | |||
... | ... | Power and logarithmic functions | |
199 | 199 | ||
200 | 200 | .. function:: exp(x) | .. function:: exp(x) |
201 | 201 | ||
202 | Return ``e**x``. | ||
203 | |||
202 | Return e raised to the power *x*, where e = 2.718281... is the base | ||
203 | of natural logarithms. | ||
204 | 204 | ||
205 | 205 | .. function:: expm1(x) | .. function:: expm1(x) |
206 | 206 |