and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

  1. 11 Feb, 2016 4 commits
  2. 10 Feb, 2016 2 commits
  3. 27 Jan, 2016 2 commits
    • Jordan Moldow's avatar
      Merge pull request #109 from box/long_poll_stream_type · 8b6afa5c
      Jordan Moldow authored
      Add stream_type param for events long polling
      8b6afa5c
    • Jordan Moldow's avatar
      Add stream_type param for events long polling · a6441cb4
      Jordan Moldow authored
      Add a `stream_type` parameter to the
      `generate_events_with_long_polling()` method and its helper
      methods. This allows users to listen to other event stream
      types. The default is still to listen to the 'all' stream.
      
      In order to differentiate between user and enterprise event
      streams, the following enum hierarchy was created, with the help
      of a new `ExtendableEnumMeta` metaclass:
      
          +-- `EventsStreamType`
                |
                +-- `UserEventsStreamType`
                |
                +-- `EnterpriseEventsStreamType`
      
      Unrelatedly, fix up the RST for the README. Add a table of
      contents, and fix up backticks (double-backticks are needed to
      create code spans, single-backticks aren't enough).
      a6441cb4
  4. 13 Jan, 2016 1 commit
  5. 06 Jan, 2016 1 commit
  6. 05 Jan, 2016 4 commits
  7. 04 Jan, 2016 5 commits
  8. 22 Dec, 2015 6 commits
  9. 16 Dec, 2015 2 commits
  10. 14 Dec, 2015 2 commits
  11. 09 Dec, 2015 3 commits
  12. 08 Dec, 2015 2 commits
  13. 16 Nov, 2015 2 commits
    • Jeff Meadows's avatar
      Merge pull request #90 from box/replace_basestring · 726dc0a0
      Jeff Meadows authored
      Replace `basestring` with `six.string_types`
      726dc0a0
    • Jordan Moldow's avatar
      Replace `basestring` with `six.string_types` · a66da09b
      Jordan Moldow authored
      On Python 3, calling `setup_logging()` in `boxsdk.util.log`
      would always raise
      
          NameError: name 'basestring' is not defined
      
      On Python 3, this prevented `LoggingNetwork` from being
      initialized without passing an existing `Logger`.
      
      Replace this usage of `basestring` with the equivalent
      `six.string_types`.
      
      Add unit test coverage of `boxsdk.util.log`.
      
      Bump version to 1.3.2.
      a66da09b
  14. 06 Nov, 2015 4 commits