1. 02 Aug, 2017 1 commit
  2. 01 Aug, 2017 4 commits
  3. 25 Jul, 2017 16 commits
  4. 24 Jul, 2017 11 commits
  5. 23 Jul, 2017 2 commits
  6. 21 Jul, 2017 2 commits
  7. 20 Jul, 2017 2 commits
  8. 19 Jul, 2017 2 commits
    • Jie Luo's avatar
      Merge pull request #3262 from snnn/master · bba4c4ae
      Jie Luo authored
      Make it compatible with python 3.6.1
      bba4c4ae
    • Adam Cozzette's avatar
      Fixed dynamic initialization for C++ lite · 417aae61
      Adam Cozzette authored
      An ifdef condition seems to have been inverted by mistake, causing the
      dynamic initialization to occur for lite if and only if the
      _NO_STATIC_INITIALIZER macro is set. This problem manifested itself as
      segfaults due to uninitialized empty strings:
      https://github.com/google/protobuf/issues/2839
      
      Since no one complained about initialization not happening, it would
      appear that we can just disable this initialization for lite
      unconditionally, so that is what this change does. Instead of the
      default instance initialization happening pre-main, it now always
      happens lazily when needed.
      417aae61