RE: https://bsky.app/profile/did:plc:hc7tndm7gduompba65aps75k/post/3mdpc6bbvds25
ImagineArt - AI Creative Suite...
Are You There, #God? Itβs Me, #Justice #SamuelAlito.
Inside the #ChristianNationalist #movement to make the #SupremeCourt #explicitly #Christian in #violation of the #USConstitution.
https://www.motherjones.com/politics/2024/06/are-you-there-god-its-me-justice-alito/
#Iowa is the latest state to adjourn #SineDie without passing a single piece of #explicitly #antiLGBTQ+ #legislation.
The only #bill to #pass, a broad #religiousfreedom bill
#Women #Transgender #LGBTQ #LGBTQIA #Conservatives #Extremism #Fascism #Religion #RepublicanParty #Hate #Bigotry #Violence #Genocide #Discrimination #Homophobia #Transphobia #ThePartyOfHate #EmptyThePews
https://www.erininthemorning.com/p/iowa-attacks-on-trans-and-lgbtq-people
#Sapporo #HighCourt Rules #Japanβs #SameSexMarriage #Ban #Unconstitutional.
This #ruling is the first time a #highcourt in the #country has declared the #ban #explicitly #unconstitutional.
#Women #Transgender #LGBTQ #LGBTQIA #Asia #Japan #SameSexMarriage #MarriageEquality
#Alabama #SupremeCourt #Justice Who #Ruled That #Embryos Are β#Childrenβ Appeared On #QAnon #Conspiracist's #show
#ChiefJustice #TomParker indicated on the #show he was a proponent of the β#SevenMountainsMandate,β an #explicitly #theocratic #doctrine at the heart of #Christiannationalism (#Fascism)
https://www.huffpost.com/entry/tom-parker-alabama-ivf-embryo_n_65d7ea34e4b0cc1f2f7b3e26
#BYU Reinstates #Formal #Ban on β#SameSex #Romantic #Behaviorβ in #HonorCode
BYU had previously #explicitly #banned βall #forms of #physicalintimacyβ among #LGBTQ #students and #staffmembers
#Women #Transgender #LGBTQ #LGBTQIA #HigherEducation #Religion #Hate #Bigotry #Discrimination #Homophobia #Transphobia #EmptyThePews #FindAnotherSchool
https://themessenger.com/news/byu-reinstates-formal-ban-on-same-sex-romantic-behavior-in-honor-code
We don't actually need a special constant for this; this is a pretty standard Python #idiom:
NOT_SET = object()
def f(a: int, b: int = NOT_SET):
if b is NOT_SET:
# function called without second argument
...
NOT_SET is a bare object, which will never compare equal to anything else, and is a singleton so the natural test is #object #identity. It absolutely distinguishes between "no argument" and "caller happened to pass the #default value #explicitly".