aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Compatibility with Python2.6 unittest.Gravatar Tres Seaver2015-01-13
|
* Use 'io.BytesIO' rather than 'cStringIO.StringIO'.Gravatar Tres Seaver2015-01-13
|
* Typo.Gravatar Tres Seaver2015-01-13
|
* Merge branch 'prep_for_py2_py3_straddle' into straddle_py2_py3Gravatar Tres Seaver2015-01-13
|\ | | | | | | | | Conflicts: python/setup.py
| * Overlooked dependency.Gravatar Tres Seaver2015-01-13
| |
* | Merge branch 'drop-apputils-dependency' into straddle_py2_py3Gravatar Tres Seaver2015-01-13
|\ \ | |/ |/| | | | | | | | | Conflicts: python/google/protobuf/internal/message_factory_test.py python/google/protobuf/internal/reflection_test.py python/google/protobuf/internal/text_format_test.py
| * Drop dependency on 'google.apputils'.Gravatar Tres Seaver2015-01-13
| | | | | | | | Use stdlib's 'unittest' instead.
* | Prepare for Python2-Python3 straddle.Gravatar Tres Seaver2015-01-13
|/ | | | | | | | | | | | | - Remove PY25 cruft. - Selectively apply cleanups from 'python-modernize': - New exception syntax. - Use 'six' to handle module renames. - Use 'six' to handle text / binary stuff. This PR covers most of the work from #66 which falls inside `python` (rather than the Python code generation stuff in 'src').
* Merge pull request #160 from zhangkun83/masterGravatar Feng Xiao2015-01-12
|\ | | | | Include names.h as java_names.h in the opensource tree
| * Align backslash verticallyGravatar zhangkun832015-01-12
| |
| * Include names.h as java_names.h in the opensource treeGravatar zhangkun832015-01-12
|/
* Merge pull request #143 from Ivoz/patch-1Gravatar Feng Xiao2014-12-22
|\ | | | | Update python version / setuptools instructions
* \ Merge pull request #46 from adalq/versionGravatar Feng Xiao2014-12-20
|\ \ | | | | | | Add __version__
* \ \ Merge pull request #139 from c0nk/masterGravatar Feng Xiao2014-12-20
|\ \ \ | | | | | | | | Improved little endian byte order detection
| | | * Update python version / setuptools instructionsGravatar Matt Iversen2014-12-17
| |_|/ |/| | | | | | | | | | | Reflect the change that protobuf should now only be supporting 2.6+ (I'd guess note python 3.x+ when its supported in implementation) Refer to the Python Packaging User Guide for installing setuptools (and pip) instead of out of date telecommunity guide.
| * | Improved little endian byte order detectionGravatar Kal Conley2014-12-16
|/ / | | | | | | | | | | | | Including <sys/param.h> on Mac/iOS doesn't define __BYTE_ORDER so PROTOBUF_LITTLE_ENDIAN was never being defined. This commit adds a check for the __LITTLE_ENDIAN__ macro which is defined by clang and Apple gcc on little endian architectures.
| * Updated __version__Gravatar Adal Chiriliuc2014-12-14
| |
* | Merge pull request #136 from cfallin/ruby-proto3-onlyGravatar Joshua Haberman2014-12-12
|\ \ | | | | | | Support Ruby code generation only for proto3.
| * | Support Ruby code generation only for proto3.Gravatar Chris Fallin2014-12-12
|/ /
* | Add missing header files in src/Makefile.amGravatar Feng Xiao2014-12-12
| |
* | Update ruby DIST_FILES.Gravatar Feng Xiao2014-12-12
| |
* | Adds Travis Cl support to test the code automatically.Gravatar Feng Xiao2014-12-12
| |
* | Merge pull request #134 from cfallin/masterGravatar Joshua Haberman2014-12-12
|\ \ | | | | | | Update Ruby build setup to produce gems successfully. Include upb as a single .c / .h file.
| * | Rename protobuf Ruby module to google/protobuf and rework its buildGravatar Chris Fallin2014-12-12
|/ / | | | | | | | | | | system. The Ruby module build now uses an amalgamated distribution of upb, and successfully builds a Ruby gem called 'google-protobuf' with module 'google/protobuf'.
* | Merge pull request #128 from krishnanm86/masterGravatar Feng Xiao2014-12-12
|\ \ | | | | | | Source code refactoring. Extracted common functionality in cpp_helpers.c...
| * | Reverting the space at the end for both files changedGravatar Krishna2014-12-12
| | |
| * | Reverting the space at the endGravatar Krishna2014-12-12
| | |
| * | Returned print_indent and print_outdent back to printservicestub and ↵Gravatar Krishna2014-12-12
| | | | | | | | | | | | printserviceclass in python generator
* | | Merge pull request #113 from nsuke/oneof-c++11Gravatar Feng Xiao2014-12-11
|\ \ \ | | | | | | | | Make C++ code generation of string oneof field compatible with C++11
* | | | Describe how to get gtest source for Visual Studio users.Gravatar Feng Xiao2014-12-11
| | | |
* | | | Update gtest version to v1.7.0.Gravatar Feng Xiao2014-12-11
| | | |
| | * | Reverted changes to cpp_helpers.cc and made code reviews to python_geenerator.ccGravatar Krishna2014-12-11
| | | |
* | | | Update version number to v3.0.0-preGravatar Feng Xiao2014-12-10
| | | |
* | | | Merge branch v3.0.0-alpha-1 into master.Gravatar Feng Xiao2014-12-10
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac
| | | * | Fixed bugsGravatar Krishna2014-12-10
| | | | |
| | | * | Source code refactoring. Extracted common functionality in cpp_helpers.cc ↵Gravatar Krishna2014-12-10
| | | | | | | | | | | | | | | | | | | | and python/python_generator.cc
* | | | | Merge pull request #121 from cfallin/masterGravatar Joshua Haberman2014-12-09
|\ \ \ \ \ | | | | | | | | | | | | Provide a Ruby extension.
| | * | | | Fix LIBPROTOBUF_PROTOBUF annotations for buliding protobuf as DLLs.Gravatar Feng Xiao2014-12-09
| | | | | |
| * | | | | Provide a Ruby extension.Gravatar Chris Fallin2014-12-09
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | This adds a Ruby extension in ruby/ that is based on the 'upb' library (now included as a submodule), and adds support for Ruby code generation to the protoc compiler.
| * | | | Remove map_field.cc from lite-runtime.Gravatar Feng Xiao2014-12-09
| | | | |
| * | | | Fix vsprojects/extract_includes.batGravatar Feng Xiao2014-12-09
| | | | |
| * | | | Fix the intermediate directory of vc project files.Gravatar Feng Xiao2014-12-09
| | | | |
| * | | | Down-integrate from internal code base.Gravatar Feng Xiao2014-12-09
| | | | |
* | | | | Merge pull request #127 from tseaver/ignore-autogen-artifactsGravatar Feng Xiao2014-12-09
|\ \ \ \ \ | |_|_|/ / |/| | | | Ignore artifacts from autogen.sh
| * | | | Ignore artifacts from autogen.shGravatar Tres Seaver2014-12-09
|/ / / /
| * | | Fix compile issues and test failures in VS2008.Gravatar Feng Xiao2014-12-05
| | | |
| * | | Update VC projects to include new source files.Gravatar Feng Xiao2014-12-04
| | | |
| * | | Fix thread local annotatoin and add back type traits is_convertable for MSVCGravatar Feng Xiao2014-12-04
| | | |
| * | | Remove usage of features not supported in Java 1.6.Gravatar Feng Xiao2014-12-03
| | | |
| * | | Replace is_enum with is_proto_enum because is_enum is not supported on some ↵Gravatar Feng Xiao2014-12-03
| | | | | | | | | | | | | | | | platforms.