Kamil Turek

Results 9 issues of Kamil Turek

Closes #648. --- Command `terraform.apply` is already registered so this PR only adds it to extension manifest. https://github.com/hashicorp/vscode-terraform/blob/b5c8b6c7855c98918b6fe4d2fea0f11d1c438599/src/extension.ts#L66-L68 ![image](https://user-images.githubusercontent.com/22010517/126700170-aa7c8d77-c27d-412a-bfd5-f1b4c71beaf2.png)

enhancement

## Location within the Book * Chapter or Appendix: 17 * Section: 17.2 * Subsection: Table 17.3 ## Description Text does not fit into the table cell. ![image](https://user-images.githubusercontent.com/22010517/112749525-1645cd00-8fc3-11eb-9066-13dff543ea9f.png) ## Possible...

This PR updates the exception messages raised from `ctypes` calls to print the exception class name instead of its string representation. Also, it removes obsolete `exceptions.` prefixes from documentation examples....

awaiting review
expert-ctypes

# Documentation The ctypes docs say that the message of the `ArgumentError` for the presented example should be as follows: In fact, it looks like this: ``` >>> strchr =...

docs

This PR fixes the exception message in `ctypes` docs. Closes #99266. ```python >>> strchr = libc.strchr >>> strchr.restype = c_char_p >>> strchr.argtypes = [c_char_p, c_char] >>> >>> strchr(b"abcdef", b"def") Traceback...

docs
awaiting review
skip news

### Description: I have a Lambda function triggered by an SQS event that has scaling configured. Example: ```yaml MyFunction: Type: AWS::Serverless::Function Properties: ... Events: MySQSEvent: Type: SQS Properties: ... ScalingConfig:...

stage/needs-investigation
area/publish

The class name mentioned in the `deferred.py` docstring did not match the actual class name - `Handler`. It was probably renamed from `TaskHandler` to `Handler` in the past. https://github.com/GoogleCloudPlatform/appengine-python-standard/blob/a900a13130eb71d6f2dd67ca2d1573c7559053d9/src/google/appengine/ext/deferred/deferred.py#L313C1-L313C10 -...

This PR adds the `google.appengine.ext.deferred` module to the list of available modules in the `README.md` file. Recently I got confused as I thought the `deferred` module is not available in...

This PR is a port of https://github.com/googleapis/python-ndb/pull/226 to `appengine-python-standard`. - [x] Tests pass - [x] Appropriate changes to README are included in PR