Browse Source

Restoring authorship annotation for <roboslone@yandex-team.ru>. Commit 2 of 2.

roboslone 3 years ago
parent
commit
a1ac9c5d21

+ 2 - 2
contrib/python/Jinja2/ya.make

@@ -8,8 +8,8 @@ IF (PYTHON2)
     PEERDIR(contrib/python/Jinja2/py2)
 ELSE()
     PEERDIR(contrib/python/Jinja2/py3)
-ENDIF() 
- 
+ENDIF()
+
 NO_LINT()
 
 END()

+ 1 - 1
contrib/python/MarkupSafe/ya.make

@@ -1,4 +1,4 @@
-PY23_LIBRARY() 
+PY23_LIBRARY()
 
 LICENSE(Service-Py23-Proxy)
 

+ 1 - 1
contrib/python/boto3/boto3/compat.py

@@ -12,7 +12,7 @@
 # language governing permissions and limitations under the License.
 import sys
 import os
-import errno 
+import errno
 import socket
 import warnings
 

+ 1 - 1
contrib/python/boto3/ya.make

@@ -1,4 +1,4 @@
-PY23_LIBRARY() 
+PY23_LIBRARY()
 
 OWNER(g:python-contrib)
 

+ 2 - 2
contrib/python/botocore/botocore/compat.py

@@ -16,7 +16,7 @@ import datetime
 import sys
 import inspect
 import warnings
-import hashlib 
+import hashlib
 import logging
 import shlex
 import os
@@ -31,7 +31,7 @@ logger = logging.getLogger(__name__)
 
 
 if six.PY3:
-    from six.moves import http_client 
+    from six.moves import http_client
 
     class HTTPHeaders(http_client.HTTPMessage):
         pass

+ 237 - 237
contrib/python/botocore/botocore/data/_retry.json

@@ -1,83 +1,83 @@
-{ 
-  "definitions": { 
-    "throttling": { 
-      "applies_when": { 
-        "response": { 
-          "service_error_code": "Throttling", 
-          "http_status_code": 400 
-        } 
-      } 
-    }, 
-    "throttling_exception": { 
-      "applies_when": { 
-        "response": { 
-          "service_error_code": "ThrottlingException", 
-          "http_status_code": 400 
-        } 
-      } 
-    }, 
-    "throttled_exception": { 
-      "applies_when": { 
-        "response": { 
-          "service_error_code": "ThrottledException", 
-          "http_status_code": 400 
-        } 
-      } 
-    }, 
-    "request_throttled_exception": { 
-      "applies_when": { 
-        "response": { 
-          "service_error_code": "RequestThrottledException", 
-          "http_status_code": 400 
-        } 
-      } 
-    }, 
-    "too_many_requests": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 429 
-        } 
-      } 
-    }, 
-    "general_socket_errors": { 
-      "applies_when": { 
-        "socket_errors": ["GENERAL_CONNECTION_ERROR"] 
-      } 
-    }, 
-    "general_server_error": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 500 
-        } 
-      } 
-    }, 
-    "bad_gateway": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 502 
-        } 
-      } 
-    }, 
-    "service_unavailable": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 503 
-        } 
-      } 
-    }, 
-    "gateway_timeout": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 504 
-        } 
-      } 
-    }, 
-    "limit_exceeded": { 
-      "applies_when": { 
-        "response": { 
-          "http_status_code": 509 
-        } 
-      } 
+{
+  "definitions": {
+    "throttling": {
+      "applies_when": {
+        "response": {
+          "service_error_code": "Throttling",
+          "http_status_code": 400
+        }
+      }
+    },
+    "throttling_exception": {
+      "applies_when": {
+        "response": {
+          "service_error_code": "ThrottlingException",
+          "http_status_code": 400
+        }
+      }
+    },
+    "throttled_exception": {
+      "applies_when": {
+        "response": {
+          "service_error_code": "ThrottledException",
+          "http_status_code": 400
+        }
+      }
+    },
+    "request_throttled_exception": {
+      "applies_when": {
+        "response": {
+          "service_error_code": "RequestThrottledException",
+          "http_status_code": 400
+        }
+      }
+    },
+    "too_many_requests": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 429
+        }
+      }
+    },
+    "general_socket_errors": {
+      "applies_when": {
+        "socket_errors": ["GENERAL_CONNECTION_ERROR"]
+      }
+    },
+    "general_server_error": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 500
+        }
+      }
+    },
+    "bad_gateway": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 502
+        }
+      }
+    },
+    "service_unavailable": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 503
+        }
+      }
+    },
+    "gateway_timeout": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 504
+        }
+      }
+    },
+    "limit_exceeded": {
+      "applies_when": {
+        "response": {
+          "http_status_code": 509
+        }
+      }
     },
     "throughput_exceeded": {
       "applies_when": {
@@ -86,31 +86,31 @@
           "http_status_code": 400
         }
       }
-    } 
-  }, 
-  "retry": { 
-    "__default__": { 
-      "max_attempts": 5, 
-      "delay": { 
-        "type": "exponential", 
-        "base": "rand", 
-        "growth_factor": 2 
-      }, 
-      "policies": { 
-          "general_socket_errors": {"$ref": "general_socket_errors"}, 
-          "general_server_error": {"$ref": "general_server_error"}, 
-          "bad_gateway": {"$ref": "bad_gateway"}, 
-          "service_unavailable": {"$ref": "service_unavailable"}, 
-          "gateway_timeout": {"$ref": "gateway_timeout"}, 
-          "limit_exceeded": {"$ref": "limit_exceeded"}, 
-          "throttling_exception": {"$ref": "throttling_exception"}, 
-          "throttled_exception": {"$ref": "throttled_exception"}, 
-          "request_throttled_exception": {"$ref": "request_throttled_exception"}, 
-          "throttling": {"$ref": "throttling"}, 
+    }
+  },
+  "retry": {
+    "__default__": {
+      "max_attempts": 5,
+      "delay": {
+        "type": "exponential",
+        "base": "rand",
+        "growth_factor": 2
+      },
+      "policies": {
+          "general_socket_errors": {"$ref": "general_socket_errors"},
+          "general_server_error": {"$ref": "general_server_error"},
+          "bad_gateway": {"$ref": "bad_gateway"},
+          "service_unavailable": {"$ref": "service_unavailable"},
+          "gateway_timeout": {"$ref": "gateway_timeout"},
+          "limit_exceeded": {"$ref": "limit_exceeded"},
+          "throttling_exception": {"$ref": "throttling_exception"},
+          "throttled_exception": {"$ref": "throttled_exception"},
+          "request_throttled_exception": {"$ref": "request_throttled_exception"},
+          "throttling": {"$ref": "throttling"},
           "too_many_requests": {"$ref": "too_many_requests"},
           "throughput_exceeded": {"$ref": "throughput_exceeded"}
-      } 
-    }, 
+      }
+    },
     "organizations": {
       "__default__": {
         "policies": {
@@ -125,15 +125,15 @@
         }
       }
     },
-    "dynamodb": { 
-      "__default__": { 
-        "max_attempts": 10, 
-        "delay": { 
-          "type": "exponential", 
-          "base": 0.05, 
-          "growth_factor": 2 
-        }, 
-        "policies": { 
+    "dynamodb": {
+      "__default__": {
+        "max_attempts": 10,
+        "delay": {
+          "type": "exponential",
+          "base": 0.05,
+          "growth_factor": 2
+        },
+        "policies": {
 	  "still_processing": {
 	    "applies_when": {
 	      "response": {
@@ -142,26 +142,26 @@
 	      }
 	    }
 	  },
-          "crc32": { 
-            "applies_when": { 
-              "response": { 
-                "crc32body": "x-amz-crc32" 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "ec2": { 
-      "__default__": { 
-        "policies": { 
-          "request_limit_exceeded": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "RequestLimitExceeded", 
-                "http_status_code": 503 
-              } 
-            } 
+          "crc32": {
+            "applies_when": {
+              "response": {
+                "crc32body": "x-amz-crc32"
+              }
+            }
+          }
+        }
+      }
+    },
+    "ec2": {
+      "__default__": {
+        "policies": {
+          "request_limit_exceeded": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "RequestLimitExceeded",
+                "http_status_code": 503
+              }
+            }
           },
           "ec2_throttled_exception": {
             "applies_when": {
@@ -170,109 +170,109 @@
                 "http_status_code": 503
               }
             }
-          } 
-        } 
-      } 
-    }, 
-    "cloudsearch": { 
-      "__default__": { 
-        "policies": { 
-          "request_limit_exceeded": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "BandwidthLimitExceeded", 
-                "http_status_code": 509 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "kinesis": { 
+          }
+        }
+      }
+    },
+    "cloudsearch": {
+      "__default__": {
+        "policies": {
+          "request_limit_exceeded": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "BandwidthLimitExceeded",
+                "http_status_code": 509
+              }
+            }
+          }
+        }
+      }
+    },
+    "kinesis": {
+      "__default__": {
+        "policies": {
+          "request_limit_exceeded": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "LimitExceededException",
+                "http_status_code": 400
+              }
+            }
+          }
+        }
+      }
+    },
+    "sqs": {
       "__default__": {
-        "policies": { 
-          "request_limit_exceeded": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "LimitExceededException", 
-                "http_status_code": 400 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "sqs": { 
-      "__default__": { 
-        "policies": { 
-          "request_limit_exceeded": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "RequestThrottled", 
-                "http_status_code": 403 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "s3": { 
-      "__default__": { 
-        "policies": { 
-          "timeouts": { 
-            "applies_when": { 
-              "response": { 
-                "http_status_code": 400, 
-                "service_error_code": "RequestTimeout" 
-              } 
-            } 
-          }, 
-          "contentmd5": { 
-            "applies_when": { 
-              "response": { 
-                "http_status_code": 400, 
-                "service_error_code": "BadDigest" 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "glacier": { 
-      "__default__": { 
-        "policies": { 
-          "timeouts": { 
-            "applies_when": { 
-              "response": { 
-                "http_status_code": 408, 
-                "service_error_code": "RequestTimeoutException" 
-              } 
-            } 
-          } 
-        } 
-      } 
-    }, 
-    "route53": { 
-      "__default__": { 
-        "policies": { 
-          "request_limit_exceeded": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "Throttling", 
-                "http_status_code": 400 
-              } 
-            } 
-          }, 
-          "still_processing": { 
-            "applies_when": { 
-              "response": { 
-                "service_error_code": "PriorRequestNotComplete", 
-                "http_status_code": 400 
-              } 
-            } 
-          } 
-        } 
-      } 
+        "policies": {
+          "request_limit_exceeded": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "RequestThrottled",
+                "http_status_code": 403
+              }
+            }
+          }
+        }
+      }
+    },
+    "s3": {
+      "__default__": {
+        "policies": {
+          "timeouts": {
+            "applies_when": {
+              "response": {
+                "http_status_code": 400,
+                "service_error_code": "RequestTimeout"
+              }
+            }
+          },
+          "contentmd5": {
+            "applies_when": {
+              "response": {
+                "http_status_code": 400,
+                "service_error_code": "BadDigest"
+              }
+            }
+          }
+        }
+      }
+    },
+    "glacier": {
+      "__default__": {
+        "policies": {
+          "timeouts": {
+            "applies_when": {
+              "response": {
+                "http_status_code": 408,
+                "service_error_code": "RequestTimeoutException"
+              }
+            }
+          }
+        }
+      }
+    },
+    "route53": {
+      "__default__": {
+        "policies": {
+          "request_limit_exceeded": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "Throttling",
+                "http_status_code": 400
+              }
+            }
+          },
+          "still_processing": {
+            "applies_when": {
+              "response": {
+                "service_error_code": "PriorRequestNotComplete",
+                "http_status_code": 400
+              }
+            }
+          }
+        }
+      }
     },
     "sts": {
       "__default__": {
@@ -287,6 +287,6 @@
           }
         }
       }
-    } 
-  } 
-} 
+    }
+  }
+}

+ 2 - 2
contrib/python/botocore/botocore/data/acm-pca/2017-08-22/paginators-1.json

@@ -1,4 +1,4 @@
-{ 
+{
   "pagination": {
     "ListCertificateAuthorities": {
       "input_token": "NextToken",
@@ -19,4 +19,4 @@
       "result_key": "Permissions"
     }
   }
-} 
+}

File diff suppressed because it is too large
+ 61 - 61
contrib/python/botocore/botocore/data/acm-pca/2017-08-22/service-2.json


+ 5 - 5
contrib/python/botocore/botocore/data/acm/2015-12-08/examples-1.json

@@ -1,5 +1,5 @@
-{ 
-  "version": "1.0", 
-  "examples": { 
-  } 
-} 
+{
+  "version": "1.0",
+  "examples": {
+  }
+}

+ 10 - 10
contrib/python/botocore/botocore/data/acm/2015-12-08/paginators-1.json

@@ -1,10 +1,10 @@
-{ 
-  "pagination": { 
-    "ListCertificates": { 
-      "input_token": "NextToken", 
-      "output_token": "NextToken", 
-      "limit_key": "MaxItems", 
-      "result_key": "CertificateSummaryList" 
-    } 
-  } 
-} 
+{
+  "pagination": {
+    "ListCertificates": {
+      "input_token": "NextToken",
+      "output_token": "NextToken",
+      "limit_key": "MaxItems",
+      "result_key": "CertificateSummaryList"
+    }
+  }
+}

Some files were not shown because too many files changed in this diff