Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The data returned by the list_folders method is a list of three-tuples. #39

Open
wants to merge 3 commits into
base: m
Choose a base branch
from

Commits on Jul 29, 2021

  1. The data returned by the list_folders method is a list of three-tuples.

    The data in each three tuple are extracted by the iteration in the program
    into:
      flags, a tuple or iterable of bytestrings
      delimiter, a bytestring
      folder_name, an encoded string (Unicode, according to the Python3 standard)
    
    This change adds code to invoke the bytestring type's decode method, which is
    necessary to convert the bytestring data into Unicode data acceptable in the
    later incarnations of Python.
    rstewart2702 committed Jul 29, 2021
    Configuration menu
    Copy the full SHA
    d75b4f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1259462 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b5b70fd View commit details
    Browse the repository at this point in the history