Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f787559

Browse files
committed
Whitespace cleanup.
1 parent 9dcbfc3 commit f787559

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Modules/posixmodule.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ dir_fd_converter(PyObject *o, void *p) {
522522
* or if path was an integer and path.allow_fd was set,
523523
* both path.wide and path.narrow will be NULL
524524
* and path.length will be 0.
525-
*
525+
*
526526
* path_converter takes care to not write to the path_t
527527
* unless it's successful. However it must reset the
528528
* "cleanup" field each time it's called.
@@ -2421,7 +2421,7 @@ posix_access(PyObject *self, PyObject *args, PyObject *kwargs)
24212421
Py_END_ALLOW_THREADS
24222422

24232423
/*
2424-
* Access is possible if
2424+
* Access is possible if
24252425
* * we didn't get a -1, and
24262426
* * write access wasn't requested,
24272427
* * or the file isn't read-only,
@@ -2578,7 +2578,7 @@ posix_chdir(PyObject *self, PyObject *args, PyObject *kwargs)
25782578

25792579
return_value = Py_None;
25802580
Py_INCREF(Py_None);
2581-
2581+
25822582
exit:
25832583
path_cleanup(&path);
25842584
return return_value;
@@ -2996,7 +2996,7 @@ posix_chown(PyObject *self, PyObject *args, PyObject *kwargs)
29962996
* (But we still have an lchown symbol because of weak-linking.)
29972997
* It doesn't have fchownat either. So there's no possibility
29982998
* of a graceful failover.
2999-
*/
2999+
*/
30003000
if ((!follow_symlinks) && (lchown == NULL)) {
30013001
follow_symlinks_specified("chown", follow_symlinks);
30023002
goto exit;
@@ -3316,7 +3316,7 @@ posix_listdir(PyObject *self, PyObject *args, PyObject *kwargs)
33163316
PyObject *v;
33173317
DIR *dirp = NULL;
33183318
struct dirent *ep;
3319-
int arg_is_unicode = 1;
3319+
int arg_is_unicode = 1;
33203320
#endif
33213321

33223322
memset(&path, 0, sizeof(path));
@@ -8511,7 +8511,7 @@ posix_mknod(PyObject *self, PyObject *args, PyObject *kwargs)
85118511

85128512
return_value = Py_None;
85138513
Py_INCREF(Py_None);
8514-
8514+
85158515
exit:
85168516
path_cleanup(&path);
85178517
return return_value;

0 commit comments

Comments
 (0)