- 09 Nis, 2017 2 kayıt (commit)
-
-
Michael Seifert yazdı
Also changed format specifier for function name from "%s" to "%.200s" and exception messages should start with lowercase letter.
-
Senthil Kumaran yazdı
-
- 08 Nis, 2017 4 kayıt (commit)
-
-
Jelle Zijlstra yazdı
Documents a few omitted classes and adds NamedTuple methods.
-
Serhiy Storchaka yazdı
attributes.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
object.__reduce__() no longer takes arguments, object.__reduce_ex__() now requires one argument.
-
- 07 Nis, 2017 3 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Serhiy Storchaka yazdı
-
Senthil Kumaran yazdı
-
- 06 Nis, 2017 2 kayıt (commit)
-
-
Stuart Berg yazdı
bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a 'trailer', e.g. zip()[x] (#24)
-
Alex Jordan yazdı
-
- 05 Nis, 2017 6 kayıt (commit)
-
-
Mark Dickinson yazdı
* Implement math.remainder. * Fix markup for arguments; use double spaces after period. * Mark up function reference in what's new entry. * Add comment explaining the calculation in the final branch. * Fix out-of-order entry in whatsnew. * Add comment explaining why it's good enough to compare m with c, in spite of possible rounding error.
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
This hides unwanted implementation details from tracebacks.
-
Lisa Roach yazdı
* Updates B.index documentation. * Updates str.index documentation, makes it Argument Clinic compatible. * Removes ArgumentClinic code. * Finishes string.index documentation. * Updates string.rindex documentation. * Documents B.rindex.
-
Senthil Kumaran yazdı
* correct parse_qs and parse_qsl test case descriptions.
-
- 04 Nis, 2017 3 kayıt (commit)
-
-
Andrew Nester yazdı
-
Victor Stinner yazdı
* bpo-29972: Fix test_eintr on AIX On AIX, sigtimedwait(0.2) sleeps 199.8 ms, whereas the test expects 200 ms or longer. * bpo-29972: Skip some inet_pton() tests on AIX Skip some inet_pton() tests of test_socket on AIX. inet_pton() on AIX is less strict than on Linux and doesn't reject some invalid IP addresses. The unit tests test more the libc than Python itself. * bpo-29972: Skip tests known to fail on AIX * test_locale.test_strcoll_with_diacritic() * test_locale.test_strxfrm_with_diacritic() * test_strptime.test_week_of_year_and_day_of_week_calculation() * test_tools.test_POT_Creation_Date()
-
csabella yazdı
* bpo-29725: DOC: add text for arraysize in sqlite3.Cursor
-
- 03 Nis, 2017 3 kayıt (commit)
-
-
Jim Fasarakis-Hilliard yazdı
-
Angus Hollands yazdı
-
Victor Stinner yazdı
Don't fail anymore if test run with python3 -Werror. Fix also deprecation message: add a space.
-
- 02 Nis, 2017 6 kayıt (commit)
-
-
Mark Dickinson yazdı
-
cocoatomo yazdı
Move the `.. index` directive to more appropriate place.
-
Pierre Quentel yazdı
Return 304 response if file was not modified.
-
Senthil Kumaran yazdı
-
Michael Selik yazdı
* change LBYL key lookup to dict.setdefault The ``results`` was constructed as a defaultdict and we could simply delete the check ``if key not in results``. However, I think it's safer to use dict.setdefault as I'm not sure whether the caller expects a regular dict or defaultdict. * add name to the acknowledgements file * use defaultdict to make the key-lookup cleaner
-
csabella yazdı
-
- 01 Nis, 2017 5 kayıt (commit)
-
-
INADA Naoki yazdı
Revert "Minor factoring: move redundant resize scaling logic into the resize function." This reverts commit 48973002.
-
Zachary Ware yazdı
This reverts commit b94d7fd4.
-
s-sanjay yazdı
the original logic was just comparing the network address but this is wrong because if the network address is equal then we need to compare the ip address for breaking the tie add more ip_interface comparison tests
-
Senthil Kumaran yazdı
Also uncomment and fix a path test.
-
Zachary Ware yazdı
-
- 31 Mar, 2017 6 kayıt (commit)
-
-
Brett Cannon yazdı
-
Serhiy Storchaka yazdı
objects when pass out of bound fold argument.
-
T. Wouters yazdı
Fix MemoryError caused by moving around code in PR #886; nbytes was sometimes used unitinitalized (in non-debug builds, when use_calloc was false and elsize was 0).
-
T. Wouters yazdı
Make a non-Py_DEBUG, asserts-enabled build of CPython possible. This means making sure helper functions are defined when NDEBUG is not defined, not just when Py_DEBUG is defined. Also fix a division-by-zero in obmalloc.c that went unnoticed because in Py_DEBUG mode, elsize is never zero.
-
Benjamin Peterson yazdı
Changed test code to suppress a compiler warning, while taking care to avoid the code being optimized out by the compiler.
-
cocoatomo yazdı
s/keys and elements/keys and values/
-