v1.0.45: add explode function (dangerous!!)

This commit is contained in:
Firepup Sixfifty 2025-02-04 13:49:20 -06:00
parent f84930d9d5
commit 7afdab3509
Signed by: Firepup650
SSH key fingerprint: SHA256:cb8sEJwc0kQJ6/nMUhscWRe35itf0NFMdSKl3v4qt48
4 changed files with 41 additions and 3 deletions

View file

@ -1,6 +1,8 @@
# Firepup650
Package containing various shorthand things I use, and a few imports I almost always use
### Change log:
#### v.1.0.45:
Added an explode function (dangerous!!)
#### v.1.0.44:
Added a getRandomNumber function (xkcd 221)
#### v.1.0.43:

View file

@ -1,6 +1,8 @@
# Firepup650
Package containing various shorthand things I use, and a few imports I almost always use
### Change log:
#### v.1.0.45:
Added an explode function (dangerous!!)
#### v.1.0.44:
Added a getRandomNumber function (xkcd 221)
#### v.1.0.43:

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "firepup650"
version = "1.0.44"
version = "1.0.45"
authors = ["Firepup650 <firepyp650@gmail.com>"]
description = "Package containing various shorthand things I use, and a few imports I almost always use"
readme = "README.md"

View file

@ -41,8 +41,8 @@ def alias(func):
return decorator
__VERSION__ = "1.0.42"
__NEW__ = "Small typo fix"
__VERSION__ = "1.0.45"
__NEW__ = "Added an explode function (dangerous!!)"
__LICENSE__ = "MIT"
@ -1007,3 +1007,37 @@ def getRandomNumber() -> int:
None"""
return 4 # chosen by fair dice roll.
# garunteed to be random.
class YouDoNotKnowWhatYouAreDoing(Exception):
"""Exception raised when a Linux only method is called on a Windows machine"""
def explode(*_, iKnowWhatIAmDoingLetMeRunTheStupidFunction: bool) -> NoReturn:
"""# Function: explode
Causes a BSoD on Windows, and hangs Linux for a while.
This function is not a joke! Be careful of what you're doing.
# Inputs:
*_ - If any positonal arguments are passed, throws a TypeError
iKnowWhatIAmDoingLetMeRunTheStupidFunction: bool - If True, then executes the dangerous code. otherwise raises a "You don't know what you're doing" exception
# Returns:
NoReturn
# Raises:
TypeError - caused if positional arguments are passed
YouDoNotKnowWhatYouAreDoing - caused if iKnowWhatIAmDoingLetMeRunTheStupidFunction is not True
"""
if _ != ():
raise TypeError(
f"explode() takes 0 positional arguments but {len(_)} were given"
)
if iKnowWhatIAmDoingLetMeRunTheStupidFunction != True:
raise yYuDoNotKnowWhatYouAreDoingException("Let me save you from yourself.")
sys.setrecursionlimit(2**31 - 1)
def recur():
recur()
recur()
raise NotImplementedError("This code is impossible to reach.")