Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Can somebody help

オープン
#2,720 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
5/5
見積もり時間
1週間以上
初心者へのやさしさ
10/100
issue の種類
バグ
明瞭さ
説明が足りない
活発さ
停滞
技術スタック
python
領域
backend

調査の方向性

まず Pydroid 環境でレポートを再現し、3127 行目と 3064 行目からの traceback をたどって、1750 行目の loading_kernel エントリーポイントを調査します。どの値が文字列として呼び出されているのかを特定し、変更を加える前に期待される動作を定義します。完了とは、検証済みの診断またはテストによって、スクリプトがこの失敗を通過して実行されることです。

索引モデルが issue の本文から書いたものです。

説明


| _ | | | | __ ) \ / / _ / |
| |
) | | | | _ \ V / | | _

| _ <| || | |) || || || |) |
|
| __
/|___/ || __/|____/

[ 0.000000] Booting Linux Kernel...
[ 0.032000] Initializing CPU...
[ 0.064000] Loading drivers...
[ 0.096000] Detecting hardware...
[ 0.128000] Enabling power management...
[ 0.160000] Starting udev...
[ 0.192000] Loading kernel modules...
[ 0.224000] Setting up file system...
[ 0.256000] Mounting root filesystem...
[ 0.288000] Checking system integrity...
[ 0.320000] Starting network services...
[ 0.352000] Configuring network interfaces...
[ 0.384000] Starting system daemons...
[ 0.416000] Initializing SELinux...
[ 0.448000] Loading system services...
[ 0.480000] Initializing Ruby OS core...
[ 0.512000] Loading hardware abstraction layer...
[ 0.544000] Setting up memory management...
[ 0.576000] Checking available storage...
[ 0.608000] Starting Ruby shell...
[ 0.640000] Detecting connected devices...
[ 0.672000] Starting display server...
[ 0.704000] Configuring input devices...
[ 0.736000] Setting up security policies...
[ 0.768000] Launching Ruby process manager...
[ 0.800000] Loading user space applications...
[ 0.832000] Checking internet connection...
[ 0.864000] Running system diagnostics...
[ 0.896000] Boot optimization in progress...
[ 0.928000] Enabling sound system...
[ 0.960000] Starting background services...
[ 0.992000] Preparing graphical environment...
[ 1.024000] Verifying installed applications...
[ 1.056000] Checking for updates...
[ 1.088000] Loading Ruby runtime...
[ 1.120000] Enabling GPU acceleration...
[ 1.152000] Starting compositor...
[ 1.184000] Initializing user session...
[ 1.216000] Finalizing system setup...
[ 1.248000] Ruby OS boot complete!
[ 1.280000] Allocating process table...
[ 1.312000] Running garbage collector...
[ 1.344000] Initializing kernel modules...
[ 1.376000] Configuring system clock...
[ 1.408000] Loading device tree...
[ 1.440000] Checking disk partitions...
[ 1.472000] Verifying bootloader integrity...
[ 1.504000] Starting system monitoring service...
[ 1.536000] Enabling swap space...
[ 1.568000] Checking battery status...
[ 1.600000] Enabling wireless interfaces...
[ 1.632000] Detecting USB peripherals...
[ 1.664000] Mounting additional storage...
[ 1.696000] Configuring user permissions...
[ 1.728000] Initializing audio drivers...
[ 1.760000] Checking system temperature...
[ 1.792000] Starting Ruby desktop environment...
[ 1.824000] Enabling network time synchronization...
[ 1.856000] Running startup scripts...
[ 1.888000] Checking system logs...
[ 1.920000] Finalizing network configuration...
[ 1.952000] Starting firewall service...
[ 1.984000] Scanning for malware...
[ 2.016000] Loading user preferences...
[ 2.048000] Adjusting power settings...
[ 2.080000] Initializing Ruby software repository...
RUBY DEBUGGER
E: File 'hal.dll' is misssing or corrupted
Traceback (most recent call last):
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in
start(fakepyfile,mainpyfile)
~~~~~^^^^^^^^^^^^^^^^^^^^^^^
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
exec(open(mainpyfile).read(), main.dict)
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "", line 3127, in
File "", line 3064, in main
File "", line 1750, in loading_kernel
TypeError: 'str' object is not callable

[Program finished]

import datetime

def log(message, level="info", save_to_file=False, filename="log.txt"):
# Koristimo datetime pravilno
current_time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")

# Formatiranje nivoa poruke
level = str(level).lower()
if level == "info":
    prefix = "[INFO]"
    color = "\033[94m"  # plava
elif level == "error":
    prefix = "[ERROR]"
    color = "\033[91m"  # crvena
else:
    prefix = "[LOG]"
    color = "\033[90m"  # siva

reset = "\033[0m"
formatted = f"{color}{current_time} {prefix} {str(message)}{reset}"

# Ispis u terminal
print(formatted)

# Zapis u fajl
if save_to_file:
    try:
        with open(filename, "a", encoding="utf-8") as f:
            f.write(f"{current_time} {prefix} {str(message)}\n")
    except Exception as e:
        print(f"\033[91m[ERROR] Ne mogu da upišem u fajl: {e}\033[0m")
主要言語
Python
スター
35.4k
フォーク
12.9k
平均マージ
2時間 37分
マージ済み PR(30日)
1

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

geekcomputers/Python のほかの issue

geekcomputers/Python の issue をすべて見る

似ている issue

Python の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。