@@ -238,6 +238,11 @@ def __eq__(self, other: Self | Scalar) -> Self: # type: ignore[override]
238
238
Returns
239
239
-------
240
240
Column
241
+
242
+ Notes
243
+ -----
244
+ `other`'s parent DataFrame must be the same as `self`'s - else,
245
+ the operation is unsupported and may vary across implementations.
241
246
"""
242
247
...
243
248
@@ -257,6 +262,11 @@ def __ne__(self, other: Self | Scalar) -> Self: # type: ignore[override]
257
262
Returns
258
263
-------
259
264
Column
265
+
266
+ Notes
267
+ -----
268
+ `other`'s parent DataFrame must be the same as `self`'s - else,
269
+ the operation is unsupported and may vary across implementations.
260
270
"""
261
271
...
262
272
@@ -274,6 +284,11 @@ def __ge__(self, other: Self | Scalar) -> Self:
274
284
Returns
275
285
-------
276
286
Column
287
+
288
+ Notes
289
+ -----
290
+ `other`'s parent DataFrame must be the same as `self`'s - else,
291
+ the operation is unsupported and may vary across implementations.
277
292
"""
278
293
...
279
294
@@ -291,6 +306,11 @@ def __gt__(self, other: Self | Scalar) -> Self:
291
306
Returns
292
307
-------
293
308
Column
309
+
310
+ Notes
311
+ -----
312
+ `other`'s parent DataFrame must be the same as `self`'s - else,
313
+ the operation is unsupported and may vary across implementations.
294
314
"""
295
315
...
296
316
@@ -308,6 +328,11 @@ def __le__(self, other: Self | Scalar) -> Self:
308
328
Returns
309
329
-------
310
330
Column
331
+
332
+ Notes
333
+ -----
334
+ `other`'s parent DataFrame must be the same as `self`'s - else,
335
+ the operation is unsupported and may vary across implementations.
311
336
"""
312
337
...
313
338
@@ -325,6 +350,11 @@ def __lt__(self, other: Self | Scalar) -> Self:
325
350
Returns
326
351
-------
327
352
Column
353
+
354
+ Notes
355
+ -----
356
+ `other`'s parent DataFrame must be the same as `self`'s - else,
357
+ the operation is unsupported and may vary across implementations.
328
358
"""
329
359
...
330
360
@@ -343,6 +373,11 @@ def __and__(self, other: Self | bool) -> Self:
343
373
-------
344
374
Column
345
375
376
+ Notes
377
+ -----
378
+ `other`'s parent DataFrame must be the same as `self`'s - else,
379
+ the operation is unsupported and may vary across implementations.
380
+
346
381
Raises
347
382
------
348
383
ValueError
@@ -365,6 +400,11 @@ def __or__(self, other: Self | bool) -> Self:
365
400
-------
366
401
Column
367
402
403
+ Notes
404
+ -----
405
+ `other`'s parent DataFrame must be the same as `self`'s - else,
406
+ the operation is unsupported and may vary across implementations.
407
+
368
408
Raises
369
409
------
370
410
ValueError
@@ -382,6 +422,11 @@ def __add__(self, other: Self | Scalar) -> Self:
382
422
If Column, must have same length.
383
423
"Scalar" here is defined implicitly by what scalar types are allowed
384
424
for the operation by the underling dtypes.
425
+
426
+ Notes
427
+ -----
428
+ `other`'s parent DataFrame must be the same as `self`'s - else,
429
+ the operation is unsupported and may vary across implementations.
385
430
386
431
Returns
387
432
-------
@@ -403,6 +448,11 @@ def __sub__(self, other: Self | Scalar) -> Self:
403
448
Returns
404
449
-------
405
450
Column
451
+
452
+ Notes
453
+ -----
454
+ `other`'s parent DataFrame must be the same as `self`'s - else,
455
+ the operation is unsupported and may vary across implementations.
406
456
"""
407
457
...
408
458
@@ -420,6 +470,11 @@ def __mul__(self, other: Self | Scalar) -> Self:
420
470
Returns
421
471
-------
422
472
Column
473
+
474
+ Notes
475
+ -----
476
+ `other`'s parent DataFrame must be the same as `self`'s - else,
477
+ the operation is unsupported and may vary across implementations.
423
478
"""
424
479
...
425
480
@@ -437,6 +492,11 @@ def __truediv__(self, other: Self | Scalar) -> Self:
437
492
Returns
438
493
-------
439
494
Column
495
+
496
+ Notes
497
+ -----
498
+ `other`'s parent DataFrame must be the same as `self`'s - else,
499
+ the operation is unsupported and may vary across implementations.
440
500
"""
441
501
...
442
502
@@ -454,6 +514,11 @@ def __floordiv__(self, other: Self | Scalar) -> Self:
454
514
Returns
455
515
-------
456
516
Column
517
+
518
+ Notes
519
+ -----
520
+ `other`'s parent DataFrame must be the same as `self`'s - else,
521
+ the operation is unsupported and may vary across implementations.
457
522
"""
458
523
...
459
524
@@ -475,6 +540,11 @@ def __pow__(self, other: Self | Scalar) -> Self:
475
540
Returns
476
541
-------
477
542
Column
543
+
544
+ Notes
545
+ -----
546
+ `other`'s parent DataFrame must be the same as `self`'s - else,
547
+ the operation is unsupported and may vary across implementations.
478
548
"""
479
549
...
480
550
@@ -492,6 +562,11 @@ def __mod__(self, other: Self | Scalar) -> Self:
492
562
Returns
493
563
-------
494
564
Column
565
+
566
+ Notes
567
+ -----
568
+ `other`'s parent DataFrame must be the same as `self`'s - else,
569
+ the operation is unsupported and may vary across implementations.
495
570
"""
496
571
...
497
572
@@ -509,6 +584,11 @@ def __divmod__(self, other: Self | Scalar) -> tuple[Column, Column]:
509
584
Returns
510
585
-------
511
586
Column
587
+
588
+ Notes
589
+ -----
590
+ `other`'s parent DataFrame must be the same as `self`'s - else,
591
+ the operation is unsupported and may vary across implementations.
512
592
"""
513
593
...
514
594
0 commit comments