diff --git a/fern/products/sdks/generators/python/configuration.mdx b/fern/products/sdks/generators/python/configuration.mdx index ab2ed0a28..5971ad5cb 100644 --- a/fern/products/sdks/generators/python/configuration.mdx +++ b/fern/products/sdks/generators/python/configuration.mdx @@ -69,6 +69,10 @@ The name of the generated client class. Must be PascalCase. For example, setting The default number of retries for failed requests in the generated SDK. Set to `0` to disable retries by default. SDK users can still override this per-request via request options. + +When enabled, the generated SDK escapes reserved characters in path parameter values before building the request path. For example, `../connections` is sent as `..%2Fconnections`. APIs that accept slashes inside a path parameter value receive `%2F` instead of `/`. + + When enabled, generates [mock server (wire) tests](/sdks/deep-dives/testing#mock-server-tests) to verify that the SDK sends and receives HTTP requests as expected.