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

Skip to content

Commit a8c5475

Browse files
committed
Fix rpmlint: non-executable-script
""" This text file contains a shebang or is located in a path dedicated for executables, but lacks the executable bits and cannot thus be executed. If the file is meant to be an executable script, add the executable bits, otherwise remove the shebang or move the file elsewhere. """ Mostly deleting the shebang, but some files contain a __main__ function, so make them executable. This is the last commit of this series and: Closes gh-647.
1 parent e9b1ebb commit a8c5475

45 files changed

Lines changed: 1 addition & 49 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

IPython/config/configurable.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
A base class for objects that are configurable.

IPython/config/tests/test_configurable.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
Tests for IPython.config.configurable

IPython/config/tests/test_loader.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
Tests for IPython.config.loader

IPython/core/alias.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
System command aliases.

IPython/core/autocall.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
Autocall capabilities for IPython.core.

IPython/core/display_trap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
A context manager for handling sys.displayhook.

IPython/core/error.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
Global exception classes for IPython.core.
@@ -49,4 +48,4 @@ class UsageError(IPythonCoreError):
4948
5049
Something that probably won't warrant a full traceback, but should
5150
nevertheless interrupt a macro / batch file.
52-
"""
51+
"""

IPython/core/ipapi.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
This module is *completely* deprecated and should no longer be used for

IPython/core/page.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
Paging capabilities for IPython.core

IPython/core/payloadpage.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# encoding: utf-8
32
"""
43
A payload based version of page.

0 commit comments

Comments
 (0)