aboutsummaryrefslogtreecommitdiff
path: root/Modules/_codecsmodule.c
AgeCommit message (Expand)Author
2017-03-12bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka
2016-09-08Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower
2016-09-06Issue #27959: Adds oem encoding, alias ansi to mbcs, move aliasmbcs to codec ...Steve Dower
2016-07-07- Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2016-07-07Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2016-04-14Issues #26716, #26057: Regenerate Argument Clinic code.Serhiy Storchaka
2016-04-13Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka
2015-08-09Issue #24824: Signatures of codecs.encode() and codecs.decode() now areSerhiy Storchaka
2015-05-12Fixed compilation on Windows for issue #20173.Serhiy Storchaka
2015-05-12Issue #20173: Converted the _codecs module to Argument Clinic.Serhiy Storchaka
2015-04-03Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka
2015-03-20Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka
2015-02-03Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka
2015-02-03Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka
2015-01-07Merge issue 19548 changes from 3.4Nick Coghlan
2015-01-07Issue 19548: update codecs module documentationNick Coghlan
2014-09-15Merge fix for issue #22166 from 3.4Nick Coghlan
2014-09-15Issue #22166: clear codec caches in test_codecsNick Coghlan
2014-08-17Issue #22207: Fix "comparison between signed and unsigned integers" warning inVictor Stinner
2014-05-14Issue #21488: Add support of keyword arguments for codecs.encode and codecs.d...Victor Stinner
2013-08-13Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou
2012-10-06Issue #16096: Fix several occurrences of potential signed integer overflow. ...Mark Dickinson
2011-11-17#13406: fix more deprecation warnings and move the deprecation of unicode-int...Ezio Melotti
2011-11-16#13406: silence deprecation warnings in test_codecs.Ezio Melotti
2011-11-12Plug some (unlikely) refleaks.Antoine Pitrou
2011-11-10Fix and deprecated the unicode_internal codecVictor Stinner
2011-11-10Fix build on WindowsVictor Stinner
2011-11-10Port encoders from Py_UNICODE API to unicode object API.Martin v. Löwis
2011-11-02Port UCS1 and charmap codecs to new API.Martin v. Löwis
2011-10-18Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignoreVictor Stinner
2011-10-14Issue #13088: Add shared Py_hexdigits constant to format a number into base 16Victor Stinner
2011-09-28Implement PEP 393.Martin v. Löwis
2011-07-04Issue #9642: Uniformize the tests on the availability of the mbcs codecVictor Stinner
2010-06-09Merged revisions 81860 via svnmerge fromAntoine Pitrou
2010-06-08Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing formatVictor Stinner
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2010-04-05Merged revisions 79779 via svnmerge fromPhilip Jenvey
2009-05-06Merged revisions 72404-72406 via svnmerge fromWalter Dörwald
2009-03-21Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-...Benjamin Peterson
2009-01-22Issue #4874: Most builtin decoders now reject unicode input.Antoine Pitrou
2008-10-11merge from trunkBenjamin Peterson
2008-08-13Merged revisions 65654 via svnmerge fromMartin v. Löwis
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2008-05-26Renamed PyString to PyBytesChristian Heimes
2007-11-20Merged revisions 59056-59076 via svnmerge fromChristian Heimes
2007-11-06Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum
2007-08-16Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le andWalter Dörwald
2007-07-20Merged revisions 56443-56466 via svnmerge fromGuido van Rossum
2007-06-22Change readbuffer_encode() and charbuffer_encode() toWalter Dörwald
2007-06-10Make identifiers str (not str8) objects throughout.Martin v. Löwis