1. 02 Mar, 2017 1 kayıt (commit)
  2. 11 Eyl, 2016 1 kayıt (commit)
  3. 24 Şub, 2016 1 kayıt (commit)
  4. 23 Şub, 2016 1 kayıt (commit)
    • Martin Panter's avatar
      Issue #22088: Clarify base-64 alphabets and which characters are discarded · ee3074e1
      Martin Panter yazdı
      * There are only two base-64 alphabets defined by the RFCs, not three
      * Due to the internal translation, plus (+) and slash (/) are never discarded
      * standard_ and urlsafe_b64decode() discard characters as well
      
      Also update the doc strings to clarify data types, based on revision
      92760d2edc9e, correct the exception raised by b16decode(), and correct the
      parameter name for the base-85 functions.
      ee3074e1
  5. 11 Eki, 2015 1 kayıt (commit)
  6. 03 Nis, 2015 1 kayıt (commit)
  7. 17 Mar, 2014 1 kayıt (commit)
  8. 02 Mar, 2014 1 kayıt (commit)
  9. 17 Kas, 2013 1 kayıt (commit)
  10. 02 Eki, 2013 1 kayıt (commit)
    • Nick Coghlan's avatar
      Close #17839: support bytes-like objects in base64 module · fdf239a8
      Nick Coghlan yazdı
      This mostly affected the encodebytes and decodebytes function
      (which are used by base64_codec)
      
      Also added a test to ensure all bytes-bytes codecs can handle
      memoryview input and tests for handling of multidimensional
      and non-bytes format input in the modern base64 API.
      fdf239a8
  11. 28 May, 2013 1 kayıt (commit)
  12. 19 May, 2013 1 kayıt (commit)
  13. 28 May, 2013 1 kayıt (commit)
  14. 22 Haz, 2012 1 kayıt (commit)
  15. 20 Şub, 2012 1 kayıt (commit)
  16. 11 Kas, 2010 1 kayıt (commit)
    • R. David Murray's avatar
      #1466065: add validate option to base64.b64decode · 6495136e
      R. David Murray yazdı
      Patch by Neil Tallim.  This provides a mechanism for module
      users to achieve RFC 3548 compliance in the cases where ignoring
      non-base64-alphabet input characters is *not* mandated by the RFC that
      references RFC 3548.
      6495136e
  17. 14 Eki, 2010 3 kayıt (commit)
  18. 28 Tem, 2010 1 kayıt (commit)
  19. 25 May, 2010 2 kayıt (commit)
  20. 11 Mar, 2010 1 kayıt (commit)
  21. 13 Agu, 2009 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions 73656,73658,73663,73666 via svnmerge from · 7d1e8806
      Georg Brandl yazdı
      svn+ssh://svn.python.org/python/branches/py3k
      
      ........
        r73656 | mark.dickinson | 2009-06-29 00:08:40 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Fix description of range_length_obj
      ........
        r73658 | raymond.hettinger | 2009-06-29 00:30:13 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Small doc fix-ups to floatingpoint.rst.  More are forthcoming.
      ........
        r73663 | raymond.hettinger | 2009-06-29 01:21:38 +0200 (Mo, 29 Jun 2009) | 1 line
      
        Clean-up floating point tutorial.
      ........
        r73666 | alexandre.vassalotti | 2009-06-29 03:13:41 +0200 (Mo, 29 Jun 2009) | 2 lines
      
        Make b64encode raises properly a TypeError when altchars is not bytes.
      ........
      7d1e8806
  22. 29 Haz, 2009 1 kayıt (commit)
  23. 04 Haz, 2009 2 kayıt (commit)
  24. 19 Agu, 2008 1 kayıt (commit)
  25. 03 May, 2008 1 kayıt (commit)
  26. 21 Kas, 2007 1 kayıt (commit)
  27. 06 Kas, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Merging the py3k-pep3137 branch back into the py3k branch. · 98297ee7
      Guido van Rossum yazdı
      No detailed change log; just check out the change log for the py3k-pep3137
      branch.  The most obvious changes:
      
        - str8 renamed to bytes (PyString at the C level);
        - bytes renamed to buffer (PyBytes at the C level);
        - PyString and PyUnicode are no longer compatible.
      
      I.e. we now have an immutable bytes type and a mutable bytes type.
      
      The behavior of PyString was modified quite a bit, to make it more
      bytes-like.  Some changes are still on the to-do list.
      98297ee7
  28. 29 Agu, 2007 1 kayıt (commit)
  29. 27 Agu, 2007 3 kayıt (commit)
  30. 22 May, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Make test_base64 pass. · 4581ae5f
      Guido van Rossum yazdı
      Change binascii.Error to derive from ValueError
      and raise binascii.Error everywhere where values are bad
      (why on earth did the old code use TypeError?!?).
      4581ae5f
  31. 11 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; · cc2b0161
      Guido van Rossum yazdı
        and .keys(), .items(), .values() return dict views.
      
      The dict views aren't fully functional yet; in particular, they can't
      be compared to sets yet.  but they are useful as "iterator wells".
      
      There are still 27 failing unit tests; I expect that many of these
      have fairly trivial fixes, but there are so many, I could use help.
      cc2b0161
  32. 09 Şub, 2007 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fix most trivially-findable print statements. · be19ed77
      Guido van Rossum yazdı
      There's one major and one minor category still unfixed:
      doctests are the major category (and I hope to be able to augment the
      refactoring tool to refactor bona fide doctests soon);
      other code generating print statements in strings is the minor category.
      
      (Oh, and I don't know if the compiler package works.)
      be19ed77
  33. 15 Ock, 2007 1 kayıt (commit)
  34. 10 Ock, 2007 1 kayıt (commit)