awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 مستودع

Awesome GitHub RepositoriesPer-Instance Mutable Defaults

Mechanisms that create fresh copies of mutable default values for each instance to prevent shared-state bugs.

Distinct from Mutable Default Argument Guards: Distinct from Mutable Default Argument Guards: focuses on class attribute defaults with per-instance copying, not function argument guard patterns.

Explore 1 awesome GitHub repository matching programming languages & runtimes · Per-Instance Mutable Defaults. Refine with filters or upvote what's useful.

Awesome Per-Instance Mutable Defaults GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • python-attrs/attrsالصورة الرمزية لـ python-attrs

    python-attrs/attrs

    5,799عرض على GitHub↗

    attrs is a Python library that automatically generates initialization, representation, equality, hashing, and ordering methods from declarative class attribute definitions. At its core, it provides a class decorator metaprogramming framework that intercepts class creation to rewrite the class body, producing dunder methods without manual boilerplate. The library includes a comprehensive attribute validation toolkit with built-in validators for type checks, range constraints, regex matching, length limits, and logical composition of validation rules. The library distinguishes itself through it

    Provides per-instance mutable default values via factory functions, avoiding shared-state bugs in data classes.

    Python
    عرض على GitHub↗5,799
  1. Home
  2. Programming Languages & Runtimes
  3. Function Argument Passing
  4. Default Arguments
  5. Mutable Default Argument Guards
  6. Per-Instance Mutable Defaults