Skip to content

Commit

Permalink
Do not return the actual size (#1008)
Browse files Browse the repository at this point in the history
* Remove the 'value_twist' parameter from the API as well

* Update generated files

* Update CHANGELOG.md

* We have two parameters to remove

* Add parameters to test 'ivi-dance' and 'ivi-dance-with-a-twist'

* Update generated files

* More support for 'ivi-dance-with-a-twist'

* Add initial metadata

* Create nitclk.mak

* Remove numpy restriction

Bug fixed

* Upgrade pip

* Remove specific version of flake8

'\' in comments now need to be escaped

* Add basepython section

* Try using pypy3.5

* Go back to pypy3 and remove basepython block

* Don't need to run build_test for all builds - only 3.6

* Remove warning from coverage

* Undo previous change

* Try disabling faulthandler

* Remove --no-faulthandler

* pypy needs an older version of pytest

See pytest-dev/pytest#5807

* Use platform_python_implementation since implementation_name is not defined on Python2

* Try to get back to the initial coverage

* Do the same thing for build_test

* Remove redundant pip

* Add codecov file to try to control limits for passing

* Enable nitclk build

* There are some files we will need to skip for now

* Add generated nitclk files

* Update generated files

* Can't skip README.rst

* Add new cases for buffers with a converter

* Need to handle ' []' to normalize everything

* Get the session handle name from config instead of hardcoding 'vi'

* Temp commit

* Fix syntax error

* Test new cases

* Force change

* Update generated files

* Update generated files

* Add different target for pr (project) and commit (patch)

* threshold should be number

* Fix indenting and line spacing

* Add and use new filter configuration: outpur parameteres for documentation

* Update generated files

* Update change log based on review comments

* Handle no close

* Handle not having a close function

* Update generated files

* Add nifake specific converter for testing

* Add function using test converter

* Add VI parameter

* Change type so I don't need another matcher

* Test using a converter with a buffer

* Update generated files
  • Loading branch information
texasaggie97-zz authored and marcoskirsch committed Sep 9, 2019
1 parent 2fe5450 commit 69b6bfe
Show file tree
Hide file tree
Showing 19 changed files with 738 additions and 95 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ All notable changes to this project will be documented in this file.
| `SelectedFunction` | `selected_function` |
| `TDREndpointTermination` | `tdr_endpoint_termination` |
| `Signal` | `export_signal(signal)` |
* **[Source Breaker]** No longer return the "actual size" from functions that use 'ivi-dance-with-a-twist'. This only affects `nidigital`.

* #### Removed
* Should be private - `get_session_state()`, `get_desired_attribute_*()`, `ppmu_measure_cached()`, `read_static_cached()`, `configure_ref_clock()`, `disable()`,
Expand Down
4 changes: 2 additions & 2 deletions build/helper/documentation_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def get_function_rst(function, method_template, numpy, config, indent=0):
suffix = method_template['method_python_name_suffix']
session_method = ParameterUsageOptions.DOCUMENTATION_SESSION_METHOD
session_declaration = ParameterUsageOptions.SESSION_METHOD_DECLARATION
output_parameters = ParameterUsageOptions.OUTPUT_PARAMETERS
output_parameters = ParameterUsageOptions.OUTPUT_PARAMETERS_FOR_DOCS
if numpy:
session_declaration = ParameterUsageOptions.SESSION_NUMPY_INTO_METHOD_DECLARATION

Expand Down Expand Up @@ -581,7 +581,7 @@ def get_function_docstring(function, numpy, config, indent=0):
'''
session_method = ParameterUsageOptions.DOCUMENTATION_SESSION_METHOD
session_declaration = ParameterUsageOptions.SESSION_METHOD_DECLARATION
output_parameters = ParameterUsageOptions.OUTPUT_PARAMETERS
output_parameters = ParameterUsageOptions.OUTPUT_PARAMETERS_FOR_DOCS
if numpy:
session_declaration = ParameterUsageOptions.SESSION_NUMPY_INTO_METHOD_DECLARATION

Expand Down

0 comments on commit 69b6bfe

Please sign in to comment.