aboutsummaryrefslogtreecommitdiff
path: root/python/google/protobuf/pyext/descriptor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/pyext/descriptor.cc')
-rw-r--r--python/google/protobuf/pyext/descriptor.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/python/google/protobuf/pyext/descriptor.cc b/python/google/protobuf/pyext/descriptor.cc
index 9fb2ade1..036be3b2 100644
--- a/python/google/protobuf/pyext/descriptor.cc
+++ b/python/google/protobuf/pyext/descriptor.cc
@@ -115,7 +115,7 @@ bool _CalledFromGeneratedFile(int stacklevel) {
}
if ((filename_size < 3) || (strcmp(&filename[filename_size - 3], ".py") != 0)) {
- // Cython is not using .py file and not at global module scope.
+ // Cython's stack does not have .py file name and is not at global module scope.
return true;
}
@@ -123,7 +123,6 @@ bool _CalledFromGeneratedFile(int stacklevel) {
// filename is too short.
return false;
}
-
if (strcmp(&filename[filename_size - 7], "_pb2.py") != 0) {
// Filename is not ending with _pb2.
return false;