aditya0yadav commented on PR #51: URL: https://github.com/apache/dubbo-python/pull/51#issuecomment-3034160667
## Pull Request Summary This pull request includes the complete implementation based on previous discussions and feedback. It also incorporates suggestions from **@cnzakii**, who has been mentoring and guiding the direction. ### ๐ Key Highlights - โ Introduced support for advanced types such as `frozenset`, `datetime`, `UUID`, and more. - โ๏ธ Added handling for `params_types` and `return_type` for better control over serialization. - ๐ Improved codec design to ensure compatibility with various complex data structures. - ๐งช Added realistic test data for broader type coverage: ```python self.users_db = [ User( id=1, name="Alice", email="al...@example.com", age=30, login_history=[ LoginRecord(timestamp=datetime.utcnow() - timedelta(days=1), ip_address="192.168.1.10"), LoginRecord(timestamp=datetime.utcnow(), ip_address="192.168.1.11") ], meta=UserMeta(tags=frozenset(["admin", "beta"]), scores=(88, 92, 85)) ), User( id=2, name="Bob", email="b...@example.com", age=25, login_history=[ LoginRecord(timestamp=datetime.utcnow() - timedelta(hours=2), ip_address="192.168.1.20") ], meta=UserMeta(tags=frozenset(["tester"]), scores=(75, 80, 70)) ) ] -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org