-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Title from Python Client #2
Comments
Test from PyGithub for importing issues. |
zslayton
added a commit
that referenced
this issue
Jun 16, 2021
The method `_Private_IonWriterBase#writeValueRecursively` is recursive in two senses: 1. It visits all of the children in the provided IonReader's current value recursively. 2. The method itself is implemented using recursion. This patch modifies the implementation (#2) to be iterative, eliminating a source of StackOverflowExceptions and offering a modest reduction in CPU cost.
jobarr-amzn
pushed a commit
that referenced
this issue
Jun 16, 2021
* Makes `writeValueRecursively` iterative The method `_Private_IonWriterBase#writeValueRecursively` is recursive in two senses: 1. It visits all of the children in the provided IonReader's current value recursively. 2. The method itself is implemented using recursion. This patch modifies the implementation (#2) to be iterative, eliminating a source of StackOverflowExceptions and offering a modest reduction in CPU cost. * Tweaked javadoc, removed parameter. * Fixed comment. Co-authored-by: Zack Slayton <zslayton@amazon.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Test Body from
github
module in PythonThe text was updated successfully, but these errors were encountered: