View previous topic :: View next topic |
Author |
Message |
julian491v
Joined: 20 May 2013 Posts: 2 Location: United States
|
Posted: Mon Nov 09, 2015 8:38 pm Post subject: specify variable record length attribute on Python open() |
|
|
I vaguely remember an extension to the open() function that allowed code to specify the record type for a new file. I need to create a variable record length file rather than a stream_lf file from code like this:
f = open("x.com", "w")
Is this possible? |
|
Back to top |
|
 |
jfp
Joined: 12 Jul 2004 Posts: 625
|
Posted: Tue Nov 10, 2015 4:50 pm Post subject: |
|
|
Hello,
it's not open but file which allow this.
Just do under Python you will have some examples.
JF |
|
Back to top |
|
 |
|