Angus Hollands
|
8614b59910
|
Correct typo (#976)
|
2017-04-03 18:16:14 +02:00 |
|
Victor Stinner
|
d6debb24e0
|
bpo-29919: Remove unused imports found by pyflakes (#137)
Make also minor PEP8 coding style fixes on modified imports.
|
2017-03-27 16:05:26 +02:00 |
|
Serhiy Storchaka
|
2a404b63d4
|
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
is now of type "const char *" rather of "char *".
|
2017-01-22 23:07:07 +02:00 |
|
Stefan Krah
|
3c29fd0074
|
While a speedup of 1% is measurable, contexts aren't created that often,
so let's defer this until 3.7, 3.8, ... all have this new function.
|
2017-01-09 13:53:32 +01:00 |
|
Stefan Krah
|
a40a3f35eb
|
Merge 3.6.
|
2017-01-09 13:12:09 +01:00 |
|
Stefan Krah
|
e660335b7e
|
Merge 3.5.
|
2017-01-09 13:11:51 +01:00 |
|
Stefan Krah
|
18e0a97a1a
|
Issue #28701: Revert part of 5bdc8e1a50c8 for the following reasons:
- There was no real problem to begin with.
- The hypothetical problem has been fixed by 5bdc8e1a50c8.
|
2017-01-09 13:11:27 +01:00 |
|
Stefan Krah
|
45ed522237
|
Revert part of dbf72357cb4a that is in a rarely used path and causes
maintenance issues (cost/benefit).
|
2017-01-08 00:08:53 +01:00 |
|
Stefan Krah
|
2b938f84f4
|
Revert (unauthorized) parts of 54a89144ee1d which are not in a speed-sensitive
path in order to avoid maintenance issues.
|
2017-01-08 00:02:15 +01:00 |
|
Stefan Krah
|
1b5fa6b7c9
|
Revert (unauthorized) parts of b9eb35435178 which are not in a speed-sensitive
path and cause maintenance issues (3.6 <-> 3.7, private test suite).
|
2017-01-07 23:20:27 +01:00 |
|
Serhiy Storchaka
|
5ab81d787f
|
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict.
|
2016-12-16 16:18:57 +02:00 |
|
Victor Stinner
|
4c38154a43
|
Don't parenthesis in _PyObject_CallMethodId() format
Issue #28915: Without parenthesis, _PyObject_CallMethodId() avoids the creation
a temporary tuple, and so is more efficient.
|
2016-12-09 00:33:39 +01:00 |
|
Victor Stinner
|
a5ed5f000a
|
Use _PyObject_CallNoArg()
Replace:
PyObject_CallObject(callable, NULL)
with:
_PyObject_CallNoArg(callable)
|
2016-12-06 18:45:50 +01:00 |
|
Serhiy Storchaka
|
3b73ea1278
|
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
The latter function is more readable, faster and doesn't raise exceptions.
|
2016-11-16 10:19:20 +02:00 |
|
Serhiy Storchaka
|
f4934ea77d
|
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
The latter function is more readable, faster and doesn't raise exceptions.
|
2016-11-16 10:17:58 +02:00 |
|
Brett Cannon
|
a721abac29
|
Issue #26331: Implement the parsing part of PEP 515.
Thanks to Georg Brandl for the patch.
|
2016-09-09 14:57:09 -07:00 |
|
Steve Dower
|
a439191efa
|
Fix some warnings from MSVC
|
2016-09-06 19:09:15 -07:00 |
|
Benjamin Peterson
|
bbeedc261f
|
include (now) int standard headers
|
2016-09-06 12:41:06 -07:00 |
|
Benjamin Peterson
|
ae3869c71e
|
do not need vcstdint.h anymore
|
2016-09-06 12:07:53 -07:00 |
|
Stefan Krah
|
243d8a7866
|
Merge 3.5.
|
2016-07-17 14:12:59 +02:00 |
|
Stefan Krah
|
8c126f17f0
|
Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively
eliminate all internal uses of overridden methods.
|
2016-07-17 14:01:42 +02:00 |
|
Stefan Krah
|
1d245fabaf
|
Merge 3.5.
|
2016-06-20 14:13:12 +02:00 |
|
Stefan Krah
|
947f099d99
|
Issue #27006: Do not use PyDec_CheckExact() on a type.
|
2016-06-20 14:12:52 +02:00 |
|
Stefan Krah
|
8113f490c5
|
Merge 3.5.
|
2016-06-20 12:10:42 +02:00 |
|
Stefan Krah
|
6817c59cf0
|
Issue #27006: from_float(): call the subclass' __new__() and __init__().
|
2016-06-20 12:10:13 +02:00 |
|