# File lib/twitter/base.rb, line 168
    def lists(list_owner_username=nil)
      path = "http://api.twitter.com/1"
      path += "/#{list_owner_username}" if list_owner_username
      path += "/lists.json"
      perform_get(path)
    end