- 11 Eyl, 2018 1 kayıt (commit)
-
-
Anthony Sottile yazdı
This docstring has drifted since python2: https://github.com/python/cpython/blob/ca079a3ea30098aff3197c559a0e32d42dda6d84/Lib/encodings/__init__.py#L68
-
- 25 Mar, 2018 1 kayıt (commit)
-
-
Xiang Zhang yazdı
-
- 13 Ara, 2017 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Add -X utf8 command line option, PYTHONUTF8 environment variable and a new sys.flags.utf8_mode flag. * If the LC_CTYPE locale is "C" at startup: enable automatically the UTF-8 mode. * Add _winapi.GetACP(). encodings._alias_mbcs() now calls _winapi.GetACP() to get the ANSI code page * locale.getpreferredencoding() now returns 'UTF-8' in the UTF-8 mode. As a side effect, open() now uses the UTF-8 encoding by default in this mode. * Py_DecodeLocale() and Py_EncodeLocale() now use the UTF-8 encoding in the UTF-8 Mode. * Update subprocess._args_from_interpreter_flags() to handle -X utf8 * Skip some tests relying on the current locale if the UTF-8 mode is enabled. * Add test_utf8mode.py. * _Py_DecodeUTF8_surrogateescape() gets a new optional parameter to return also the length (number of wide characters). * pymain_get_global_config() and pymain_set_global_config() now always copy flag values, rather than only copying if the new value is greater than the old value.
-
- 09 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 08 Eyl, 2016 1 kayıt (commit)
-
-
Steve Dower yazdı
-
- 07 Eyl, 2016 2 kayıt (commit)
-
-
Steve Dower yazdı
-
Steve Dower yazdı
-
- 02 Eyl, 2016 1 kayıt (commit)
-
-
Victor Stinner yazdı
Add also a newline for readability in normalize_encoding().
-
- 26 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
-
- 15 Ock, 2016 1 kayıt (commit)
-
-
Brett Cannon yazdı
Permission was validated prior to adding these markings.
-
- 12 Eyl, 2015 1 kayıt (commit)
-
-
Martin Panter yazdı
This changes the equivalent functions listed for the Base-64, hex and Quoted- Printable codecs to reflect the functions actually used. Also mention and test the "quotetabs" setting for Quoted-Printable encoding.
-
- 12 May, 2015 2 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
- 07 Kas, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Based on patch by Martin Panter.
-
- 13 Nis, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
Patch by Berker Peksag.
-
- 17 Mar, 2014 1 kayıt (commit)
-
-
Victor Stinner yazdı
(Windows code page 65001, Microsoft UTF-8).
-
- 14 Mar, 2014 1 kayıt (commit)
-
-
R David Murray yazdı
-
- 08 Mar, 2014 2 kayıt (commit)
-
-
R David Murray yazdı
Also updated the docs and added the aliases mentioned by the references.
-
R David Murray yazdı
Also updated the docs and added the aliases mentioned by the references.
-
- 24 Şub, 2014 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
str.encode, bytes.decode and bytearray.decode now use an internal API to throw LookupError for known non-text encodings, rather than attempting the encoding or decoding operation and then throwing a TypeError for an unexpected output type. The latter mechanism remains in place for third party non-text encodings. Backported changeset d68df99d7a57.
-
- 23 Kas, 2013 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Nick Coghlan yazdı
The codecs themselves were restored in Python 3.2, this completes the restoration by adding back the convenience aliases. These aliases were originally left out due to confusing errors when attempting to use them with the text encoding specific convenience methods. Python 3.4 includes several improvements to those errors, thus permitting the aliases to be restored as well.
-
- 22 Kas, 2013 1 kayıt (commit)
-
-
Nick Coghlan yazdı
str.encode, bytes.decode and bytearray.decode now use an internal API to throw LookupError for known non-text encodings, rather than attempting the encoding or decoding operation and then throwing a TypeError for an unexpected output type. The latter mechanism remains in place for third party non-text encodings.
-
- 10 Kas, 2013 1 kayıt (commit)
-
-
Andrew Kuchling yazdı
-
- 04 Tem, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
ModuleNotFoundError.
-
- 09 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
cp037, cp500 and iso8859_1 codecs
-
- 16 Haz, 2012 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
Patch by Serhiy Storchaka.
-
- 10 Kas, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 28 Eki, 2011 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 26 Eki, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 02 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
the codec aliases. They are still accessible via codecs.lookup().
-
- 06 Ara, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 02 Ara, 2010 1 kayıt (commit)
-
-
Georg Brandl yazdı
#7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2.
-
- 30 Agu, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
-
- 21 Agu, 2010 2 kayıt (commit)
-
-
Marc-André Lemburg yazdı
-
Benjamin Peterson yazdı
-
- 28 Tem, 2010 1 kayıt (commit)
-
-
Victor Stinner yazdı
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint ........ r83198 | victor.stinner | 2010-07-28 03:39:45 +0200 (mer., 28 juil. 2010) | 3 lines Issue #6213: Implement getstate() and setstate() methods of utf-8-sig and utf-16 incremental encoders. ........
-