Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit facb839

Browse files
committed
Merge pull request #78 from GoogleCloudPlatform/update_compat_layer
updating to 0.63
2 parents 54cdb08 + 991a05c commit facb839

16 files changed

Lines changed: 148 additions & 91 deletions

File tree

appengine-compat/exported_appengine_sdk/google/appengine/api/appinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ def non_deprecated_versions(self):
519519
'ssl',
520520
'http://docs.python.org/dev/library/ssl.html',
521521
'The SSL socket wrapper built-in module.',
522-
['2.7'],
522+
['2.7', '2.7.11'],
523523
latest_version='2.7',
524524
),
525525
_VersionedLibrary(

appengine-compat/exported_appengine_sdk/google/appengine/client/services/port_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# These ports are reserved for future usage.
2323
# Port 10400 reserved for gitkit container.
24-
RESERVED_INTERNAL_PORTS = range(10400, 10499)
24+
RESERVED_INTERNAL_PORTS = range(10400, 10500)
2525

2626
# These ports are used by our code or critical system daemons.
2727
RESERVED_HOST_PORTS = [22, # SSH

appengine-compat/exported_appengine_sdk/google/appengine/datastore/datastore_stub_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ def CheckPropertyValue(name, value, max_length, meaning):
590590
'Property %s is too long. Maximum length is %d.' % (name, max_length))
591591
if (meaning not in _BLOB_MEANINGS and
592592
meaning != entity_pb.Property.BYTESTRING):
593-
CheckValidUTF8(value.stringvalue(), 'String property value')
593+
CheckValidUTF8(value.stringvalue(), 'String property "%s" value' % name)
594594

595595

596596
def CheckTransaction(request_trusted, request_app_id, transaction):

appengine-compat/exported_appengine_sdk/google/appengine/ext/analytics/static/analytics_js.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)