Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
e94e062b
Commit
e94e062b
authored
Aug 26, 2015
by
Feng Xiao
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:google/protobuf into beta-1
parents
fecc3d59
c7a1f8ec
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
11 deletions
+27
-11
descriptor.py
python/google/protobuf/descriptor.py
+3
-2
text_format.py
python/google/protobuf/text_format.py
+21
-6
tox.ini
python/tox.ini
+3
-3
No files found.
python/google/protobuf/descriptor.py
View file @
e94e062b
...
...
@@ -36,6 +36,8 @@ file, in types that make this information accessible in Python.
__author__
=
'robinson@google.com (Will Robinson)'
import
six
from
google.protobuf.internal
import
api_implementation
...
...
@@ -73,7 +75,7 @@ else:
DescriptorMetaclass
=
type
class
DescriptorBase
(
object
):
class
DescriptorBase
(
six
.
with_metaclass
(
DescriptorMetaclass
)
):
"""Descriptors base class.
...
...
@@ -88,7 +90,6 @@ class DescriptorBase(object):
avoid some bootstrapping issues.
"""
__metaclass__
=
DescriptorMetaclass
if
_USE_C_DESCRIPTORS
:
# The class, or tuple of classes, that are considered as "virtual
# subclasses" of this descriptor class.
...
...
python/google/protobuf/text_format.py
View file @
e94e062b
...
...
@@ -67,6 +67,25 @@ class Error(Exception):
class
ParseError
(
Error
):
"""Thrown in case of ASCII parsing error."""
class
TextWriter
(
object
):
def
__init__
(
self
,
as_utf8
):
if
six
.
PY2
:
self
.
_writer
=
io
.
BytesIO
()
else
:
self
.
_writer
=
io
.
StringIO
()
def
write
(
self
,
val
):
if
six
.
PY2
:
if
isinstance
(
val
,
six
.
text_type
):
val
=
val
.
encode
(
'utf-8'
)
return
self
.
_writer
.
write
(
val
)
def
close
(
self
):
return
self
.
_writer
.
close
()
def
getvalue
(
self
):
return
self
.
_writer
.
getvalue
()
def
MessageToString
(
message
,
as_utf8
=
False
,
as_one_line
=
False
,
pointy_brackets
=
False
,
use_index_order
=
False
,
...
...
@@ -92,7 +111,7 @@ def MessageToString(message, as_utf8=False, as_one_line=False,
Returns:
A string of the text formatted protocol buffer message.
"""
out
=
io
.
BytesIO
(
)
out
=
TextWriter
(
as_utf8
)
PrintMessage
(
message
,
out
,
as_utf8
=
as_utf8
,
as_one_line
=
as_one_line
,
pointy_brackets
=
pointy_brackets
,
use_index_order
=
use_index_order
,
...
...
@@ -159,11 +178,7 @@ def PrintField(field, value, out, indent=0, as_utf8=False, as_one_line=False,
# For groups, use the capitalized name.
out
.
write
(
field
.
message_type
.
name
)
else
:
if
isinstance
(
field
.
name
,
six
.
text_type
):
name
=
field
.
name
.
encode
(
'utf-8'
)
else
:
name
=
field
.
name
out
.
write
(
name
)
out
.
write
(
field
.
name
)
if
field
.
cpp_type
!=
descriptor
.
FieldDescriptor
.
CPPTYPE_MESSAGE
:
# The colon is optional in this case, but our cross-language golden files
...
...
python/tox.ini
View file @
e94e062b
[tox]
envlist
=
#
Py3 tests currently fail because of text handling issues,
#
So only test py26/py27 for now
.
#
cpp implementation on py34 is currently broken due to
#
changes introduced by http://bugs.python.org/issue22079
.
#py{26,27,33,34}-{cpp,python}
py{26,27
}-{cpp,
python}
py{26,27
,33}-{cpp,python},
py34-{
python}
[testenv]
usedevelop
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment