-
Enable the debuginfo package repository.
In
/etc/yum.repos.d/photon-debuginfo.repo
changeenabled=0
toenable=1
./etc/yum.repos.d/photon-debuginfo.repo
should look like this[photon-debuginfo]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals, print_function | |
import win32console | |
import os | |
import sys | |
import codecs | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python | |
from __future__ import print_function | |
import os, io | |
import ctypes, logging | |
import win32file, win32con | |
import sys | |
logging.basicConfig() | |
log = logging.getLogger() | |
print("Max files before set {}".format(ctypes.windll.msvcrt._getmaxstdio())) | |
if sys.version_info.major == 2: |
OlderNewer