- 25 Agu, 2013 10 kayıt (commit)
-
-
Ezio Melotti yazdı
-
Eli Bendersky yazdı
Using ``method`` markup because the method is on a callback object, not an explicitly documented method. :meth: markup creates links within the current class which is incorrect. In addition, indent the paragraph correctly.
-
Ezio Melotti yazdı
-
Charles-François Natali yazdı
-
Charles-François Natali yazdı
preexec_fn callback, which may open file descriptors.
-
Serhiy Storchaka yazdı
-
R David Murray yazdı
Previously it generated them if they were given a value, but completely ignored them if they were present in the string passed in to be parsed. Now if the flag appears on a cookie, the corresponding Morsel key will reference a True value. Other pre-existing behavior is retained in this maintenance patch: if the source contains something like 'secure=foo', morsel['secure'] will return 'foo'. Since such a value doesn't round trip and never did (and would be a surprising occurrence) a subsequent non-bug-fix patch may change this behavior. Inspired by a patch from Julien Phalip, who reviewed this one.
-
Christian Heimes yazdı
properly handled as unsigned.
-
Christian Heimes yazdı
thanks to Vajrasky Kok for proof-reading.
-
Christian Heimes yazdı
-
- 24 Agu, 2013 3 kayıt (commit)
-
-
Tim Peters yazdı
(grafted from 23181bf411a16287a0a54e910fc0f9ecd2764bf0)
-
Antoine Pitrou yazdı
-
Victor Stinner yazdı
-
- 23 Agu, 2013 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Ezio Melotti yazdı
-
Victor Stinner yazdı
when raising a new KeyError with the original key.
-
Brett Cannon yazdı
-
Brett Cannon yazdı
multiple times.
-
Brett Cannon yazdı
With importlib getting used more and more, changing __import__ will not work as well as people used to hope as it will potentially bypass importers, etc. It also will not work with importlib.import_module() as it uses "importlib.__import__" (i.e. importlib's implementation of import) directly and not builtins.__import__.
-
- 22 Agu, 2013 6 kayıt (commit)
-
-
Tim Peters yazdı
(grafted from 1ea833ecaf5a9d43a886e9e73b4e2551d0d5b548)
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
argument. This is needed for support Tcl/Tk 8.6.
-
Christian Heimes yazdı
-
Christian Heimes yazdı
fork() is suppose to be async-signal safe but the handler calls unsafe functions. A parent handler mitigates the issue.
-
R David Murray yazdı
This also backs out the previous fixes for for #14360, #1717, and #16564. Those bugs were actually caused by the fact that set_payload didn't decode to str, thus rendering the model inconsistent. This fix does mean the data processed by the encoder functions goes through an extra encode/decode cycle, but it means the model is always consistent. Future API updates will provide a better way to encode payloads, which will bypass this minor de-optimization. Tests by Vajrasky Kok.
-
- 21 Agu, 2013 4 kayıt (commit)
-
-
Tim Peters yazdı
The only file change is adding the v3.2.5 tag to 3.3's .hgtags file.
-
Antoine Pitrou yazdı
Issue #18792: Use "127.0.0.1" or "::1" instead of "localhost" as much as possible, since "localhost" goes through a DNS lookup under recent Windows versions.
-
Serhiy Storchaka yazdı
in the tkinter module.
-
Christian Heimes yazdı
A pthread_atfork() child handler is used to seeded the PRNG with pid, time and some stack data.
-
- 20 Agu, 2013 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
RuntimeError exception. Patch by Christian Schubert.
-
Serhiy Storchaka yazdı
Patch by Yogesh Chaudhari.
-
- 19 Agu, 2013 6 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Meador Inge. See also issue #18647.
-
Serhiy Storchaka yazdı
determined minimal width of repeated subexpression is >0 (an empty line was not matched in any case).
-
Serhiy Storchaka yazdı
Now max width is MAXREPEAT on 32- and 64-bit platforms when one of subexpressions is unbounded repetition.
-
Christian Heimes yazdı
OpenSSL 1.0.0+ instead of the deprecated CRYPTO id callback function.
-
Serhiy Storchaka yazdı
-
Terry Jan Reedy yazdı
(original patch by Phil Webster).
-
- 18 Agu, 2013 3 kayıt (commit)
-
-
Andrew Kuchling yazdı
* describe how \w is different when used in bytes and Unicode patterns. * describe re.ASCII flag to change that behaviour. * remove personal references ('I generally prefer...') * add some more links to the re module in the library reference * various small edits and re-wording.
-
Terry Jan Reedy yazdı
-
Terry Jan Reedy yazdı
-