Skip to content

Commit

Permalink
escape backslashes in docstrings (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhindes authored Feb 3, 2022
1 parent 51a90bb commit df4ba38
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nidaqmx/_task_modules/in_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ def logging_file_path(self):
running, this takes effect on the next sample interval (if
Logging.SampsPerFile has been set) or when DAQmx Start New
File is called. New file paths can be specified by ending
with "\" or "/". Files created after specifying a new file
with "\\" or "/". Files created after specifying a new file
path retain the same name and numbering sequence.
"""
cfunc = lib_importer.windll.DAQmxGetLoggingFilePath
Expand Down Expand Up @@ -878,11 +878,11 @@ def logging_samps_per_file(self):
created with the naming convention of <filename>_####.tdms,
where #### starts at 0001 and increments automatically with
each new file. For example, if the file specified is
C:\data.tdms, the next file name used is C:\data_0001.tdms.
To disable file spanning behavior, set this attribute to 0.
If **logging_file_path** is changed while this attribute is
set, the new file path takes effect on the next file
created.
C:\\data.tdms, the next file name used is
C:\\data_0001.tdms. To disable file spanning behavior, set
this attribute to 0. If **logging_file_path** is changed
while this attribute is set, the new file path takes effect
on the next file created.
"""
val = ctypes.c_ulonglong()

Expand Down

0 comments on commit df4ba38

Please sign in to comment.