aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2015-01-13 15:04:00 -0500
committerTres Seaver <tseaver@palladion.com>2015-01-13 15:04:00 -0500
commitd25e6686d966cd641ed5852b630c02a60f26b7fd (patch)
tree2837be3926dea41770b46a0d769fe257270107fe /python
parent70dcdeb62c0a74648d0ca842503d3fd71ae37517 (diff)
downloadprotobuf-d25e6686d966cd641ed5852b630c02a60f26b7fd.tar.gz
protobuf-d25e6686d966cd641ed5852b630c02a60f26b7fd.tar.bz2
protobuf-d25e6686d966cd641ed5852b630c02a60f26b7fd.zip
Typo.
Diffstat (limited to 'python')
-rwxr-xr-xpython/google/protobuf/internal/cpp_message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/google/protobuf/internal/cpp_message.py b/python/google/protobuf/internal/cpp_message.py
index 031b525d..20457375 100755
--- a/python/google/protobuf/internal/cpp_message.py
+++ b/python/google/protobuf/internal/cpp_message.py
@@ -404,7 +404,7 @@ def _AddDescriptors(message_descriptor, dictionary):
dictionary['__descriptors'][field.name] = GetFieldDescriptor(
field.full_name)
- dictionary['__slots__'] = list(dictionary['__descriptors'].keys())) + [
+ dictionary['__slots__'] = list(dictionary['__descriptors'].keys()) + [
'_cmsg', '_owner', '_composite_fields', 'Extensions', '_HACK_REFCOUNTS']